Notion Colorizer

Add some style to Notion

Cos'è Notion Colorizer?

Notion Colorizer è un'estensione di Chrome sviluppata da rosher.mark, e la sua funzione principale è "Add some style to Notion".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Notion Colorizer

Scarica i file di estensione Notion Colorizer 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

                        This extension adds colors to Notion tables based on the tags you specify.                    

Informazioni di Base sull'Estensione

Nome Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
URL Ufficiale https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Descrizione Add some style to Notion
Dimensione del File 230 KB
Conteggio Installazioni 25
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-04-04
Data di Pubblicazione 2023-04-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore rosher.mark
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/DeMarkR/Notion-Colorizer
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Colorizer",
    "description": "Add some style to Notion",
    "version": "0.1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.www.notion.so\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "Notion Colorizer",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/notionIco16.png",
            "32": "\/icons\/notionIco32.png",
            "48": "\/icons\/notionIco48.png",
            "128": "\/icons\/notionIco128.png"
        }
    },
    "icons": {
        "16": "\/icons\/notionIco16.png",
        "32": "\/icons\/notionIco32.png",
        "48": "\/icons\/notionIco48.png",
        "128": "\/icons\/notionIco128.png"
    }
}