Notion Colorizer

Add some style to Notion

Was ist Notion Colorizer?

Notion Colorizer ist eine Chrome-Erweiterung, die von rosher.mark entwickelt wurde, und ihr Hauptmerkmal ist "Add some style to Notion".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Notion Colorizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Colorizer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
Offizielle URL https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Beschreibung Add some style to Notion
Dateigröße 230 KB
Installationsanzahl 25
Aktuelle Version 0.1.1
Letztes Update 2023-04-04
Veröffentlichungsdatum 2023-04-04
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler rosher.mark
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DeMarkR/Notion-Colorizer
Unterstützte Sprachen 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"
    }
}