Notion Colorizer

Add some style to Notion

Apa itu Notion Colorizer?

Notion Colorizer adalah ekstensi Chrome yang dikembangkan oleh rosher.mark, dan fitur utamanya adalah "Add some style to Notion".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Notion Colorizer

Unduh file ekstensi Notion Colorizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
URL Resmi https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Deskripsi Add some style to Notion
Ukuran File 230 KB
Jumlah Instalasi 25
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2023-04-04
Tanggal Publikasi 2023-04-04
Penilaian 5.00/5 Total 1 Penilaian
Pengembang rosher.mark
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/DeMarkR/Notion-Colorizer
Bahasa yang Didukung 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"
    }
}