Dark Mode for Chrome

Enjoy dark mode on browsing any webpage in Single Tap

Cos'è Dark Mode for Chrome?

Dark Mode for Chrome è un'estensione di Chrome sviluppata da alanranjith975, e la sua funzione principale è "Enjoy dark mode on browsing any webpage in Single Tap".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dark Mode for Chrome

Scarica i file di estensione Dark Mode for Chrome 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

                        Now enjoy Dark Mode on all the websites using this Extension. Simple one click turn ON/OFF. 
Features:
# Simple to use.
# Light Weight
# Turn ON/OFF in a single step.

This extension works on all the websites opened in the browser. 

Note: Refresh the page if dark mode is not applied to the page when turned ON.                    

Informazioni di Base sull'Estensione

Nome Dark Mode for Chrome Dark Mode for Chrome
ID ebhhobcbkmgpdjodlhhmpapncjklilbk
URL Ufficiale https://chromewebstore.google.com/detail/dark-mode-for-chrome/ebhhobcbkmgpdjodlhhmpapncjklilbk
Descrizione Enjoy dark mode on browsing any webpage in Single Tap
Dimensione del File 263 KB
Conteggio Installazioni 388
Versione Corrente 0.2
Ultimo Aggiornamento 2022-07-19
Data di Pubblicazione 2022-03-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore alanranjith975
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://alanranjith.github.io/hpp-privacy-policy
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Mode for Chrome",
    "version": "0.2",
    "description": "Enjoy dark mode on browsing any webpage in Single Tap",
    "permissions": [
        "storage",
        "tabs",
        "background"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "day128.png"
    },
    "action": {
        "default_icon": "day128.png",
        "default_title": "Dark Mode for Chrome",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/darkModeScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}