Notion.so Faster & Responsive Popup

Have a better notion.so experience, less transitions and responsiveness

Vad är Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup är en Chrome-tillägg utvecklad av Matheus Cezar, och dess huvudfunktion är "Have a better notion.so experience, less transitions and responsiveness".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Notion.so Faster & Responsive Popup-förlängningens CRX-fil

Ladda ner Notion.so Faster & Responsive Popup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Features

✔ ONE CLICK OPENS POPUP
✔ WRAP LINES IN CARDS 
✔ HIDE HELP BUTTON 
✔ FASTER TRANSITIONS 
✔ SMALL PADDING 
✔ RESPONSIVE   (transforms columns in rows at narrow resolutions and windows)
✔ NICE SCROOL BAR                    

Grundläggande Information om Tillägg

Namn Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
Officiell webbadress https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Beskrivning Have a better notion.so experience, less transitions and responsiveness
Filstorlek 19.7 KB
Antal Installationer 3,000
Aktuell Version 1.7
Senast Uppdaterad 2020-10-09
Publiceringsdatum 2019-06-15
Betyg 5.00/5 Totalt 9 Betyg
Utvecklare Matheus Cezar
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://matheuscezar.me/
Hjälpsida URL https://github.com/matheus6417/notion-so-responsive-popup/issues
URL till Sekretesspolicy Sidan http://[email protected]
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion.so Faster & Responsive Popup",
    "version": "1.7",
    "description": "Have a better notion.so experience, less transitions and responsiveness",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png",
        "16": "icon.png",
        "48": "icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "https:\/\/www.notion.so\/*",
        "contextMenus"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ]
}