Notion Colorizer

Add some style to Notion

What is Notion Colorizer?

Notion Colorizer is a Chrome extension developed by rosher.mark, and its main feature is "Add some style to Notion".

Extension Screenshots

screenshot
screenshot
screenshot

Download Notion Colorizer Extension CRX File

Download Notion Colorizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
Official URL https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Description Add some style to Notion
File Size 230 KB
Installation Count 25
Current Version 0.1.1
Last Updated 2023-04-04
Publish Date 2023-04-04
Rating 5.00/5 Total 1 Ratings
Developer rosher.mark
Email [email protected]
Payment Type free
Extension Website https://github.com/DeMarkR/Notion-Colorizer
Supported Languages 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"
    }
}