Theme Color Switch

Actively switch the theme color extension of any webpage, without following the unified theme color style of the browser

Cos'è Theme Color Switch?

Theme Color Switch è un'estensione di Chrome sviluppata da TaumuLu, e la sua funzione principale è "Actively switch the theme color extension of any webpage, without following the unified theme color style of the browser".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Theme Color Switch

Scarica i file di estensione Theme Color Switch 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

                        1. Web page theme color switching, one-click switching of dark and light theme colors
2. Actively switch the theme color extension of any webpage, without following the unified theme color style of the browser
3. By default, the following domain names are targeted: mp.weixin.qq.com, sspai.com, developer.mozilla.org, learn.microsoft.com, theme-next.org, juejin.cn, etc.
4. Other domain names need users to click to authorize their use                    

Informazioni di Base sull'Estensione

Nome Theme Color Switch Theme Color Switch
ID mgmpaknickmjdkgacgnkdgakngohhfje
URL Ufficiale https://chromewebstore.google.com/detail/theme-color-switch/mgmpaknickmjdkgacgnkdgakngohhfje
Descrizione Actively switch the theme color extension of any webpage, without following the unified theme color style of the browser
Dimensione del File 86.89 KB
Conteggio Installazioni 47
Versione Corrente 0.2.1
Ultimo Aggiornamento 2023-07-09
Data di Pubblicazione 2023-06-14
Sviluppatore TaumuLu
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "0.2.1.0",
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'; media-src *"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.html",
                "icons\/*",
                "images\/*",
                "fonts\/*",
                "assets\/*",
                "html\/*",
                "js\/*",
                "lib\/*",
                "css\/*"
            ],
            "use_dynamic_url": false
        }
    ],
    "version_name": "0.2.1",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/mp.weixin.qq.com\/*",
        "*:\/\/developer.mozilla.org\/*",
        "*:\/\/theme-next.org\/*",
        "*:\/\/sspai.com\/*",
        "*:\/\/learn.microsoft.com\/*",
        "*:\/\/juejin.cn\/*"
    ],
    "optional_host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.preload.ts.a1ac214e.c3c14b31.js",
                "assets\/content-script-loader.switch.ts.2e5d2461.c0e7ab1f.js"
            ],
            "matches": [
                "http:\/\/www.baidu.com\/"
            ],
            "run_at": "document_start"
        }
    ]
}