Notion Colorizer

Add some style to Notion

Qu'est-ce que Notion Colorizer ?

Notion Colorizer est une extension Chrome développée par rosher.mark, et sa fonction principale est "Add some style to Notion".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Notion Colorizer

Téléchargez les fichiers d'extension Notion Colorizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
URL Officiel https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Description Add some style to Notion
Taille du Fichier 230 KB
Nombre d'Installations 25
Version Actuelle 0.1.1
Dernière Mise à Jour 2023-04-04
Date de Publication 2023-04-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur rosher.mark
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/DeMarkR/Notion-Colorizer
Langues Prises en Charge 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"
    }
}