Notion.so Faster & Responsive Popup

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

Cos'è Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup è un'estensione di Chrome sviluppata da Matheus Cezar, e la sua funzione principale è "Have a better notion.so experience, less transitions and responsiveness".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Notion.so Faster & Responsive Popup

Scarica i file di estensione Notion.so Faster & Responsive Popup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
URL Ufficiale https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Descrizione Have a better notion.so experience, less transitions and responsiveness
Dimensione del File 19.7 KB
Conteggio Installazioni 3,000
Versione Corrente 1.7
Ultimo Aggiornamento 2020-10-09
Data di Pubblicazione 2019-06-15
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore Matheus Cezar
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://matheuscezar.me/
URL della Pagina di Aiuto https://github.com/matheus6417/notion-so-responsive-popup/issues
URL della Pagina della Politica sulla Privacy http://[email protected]
Lingue Supportate 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"
            ]
        }
    ]
}