Hotstar Dark Theme

Dark Theme for Hotstar

Cos'è Hotstar Dark Theme?

Hotstar Dark Theme è un'estensione di Chrome sviluppata da dutiyesh, e la sua funzione principale è "Dark Theme for Hotstar".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Hotstar Dark Theme

Scarica i file di estensione Hotstar Dark Theme 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

                        Dark theme turns the light surfaces of Hotstar website dark, creating an experience ideal for night.                    

Informazioni di Base sull'Estensione

Nome Hotstar Dark Theme Hotstar Dark Theme
ID ilfapohajbnogiilnbbejjhfbbgbplel
URL Ufficiale https://chromewebstore.google.com/detail/hotstar-dark-theme/ilfapohajbnogiilnbbejjhfbbgbplel
Descrizione Dark Theme for Hotstar
Dimensione del File 58.17 KB
Conteggio Installazioni 203
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-11-29
Data di Pubblicazione 2019-11-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore dutiyesh
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hotstar Dark Theme",
    "version": "0.3.0",
    "description": "Dark Theme for Hotstar",
    "icons": {
        "128": "media\/icon.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_title": "Hotstar Dark Theme",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.hotstar.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content-script.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}