Hotstar Dark Theme

Dark Theme for Hotstar

What is Hotstar Dark Theme?

Hotstar Dark Theme is a Chrome extension developed by dutiyesh, and its main feature is "Dark Theme for Hotstar".

Extension Screenshots

screenshot
screenshot
screenshot

Download Hotstar Dark Theme Extension CRX File

Download Hotstar Dark Theme 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

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

Extension Basic Information

Name Hotstar Dark Theme Hotstar Dark Theme
ID ilfapohajbnogiilnbbejjhfbbgbplel
Official URL https://chromewebstore.google.com/detail/hotstar-dark-theme/ilfapohajbnogiilnbbejjhfbbgbplel
Description Dark Theme for Hotstar
File Size 58.17 KB
Installation Count 203
Current Version 0.3.0
Last Updated 2022-11-29
Publish Date 2019-11-09
Rating 5.00/5 Total 1 Ratings
Developer dutiyesh
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Supported Languages 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"
    }
}