nox

nox - darkmode anywhere

What is nox?

nox is a Chrome extension developed by https://jabroniverse.blogspot.com, and its main feature is "nox - darkmode anywhere".

Extension Screenshots

screenshot
screenshot

Download nox Extension CRX File

Download nox 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

                        nox [alpha]
v0.0.2

dark mode any site at the tap of a button.


alpha build v0.0.2                    

Extension Basic Information

Name nox nox
ID kofnnkjglfpbpjcnkapnnlikenejhfhh
Official URL https://chromewebstore.google.com/detail/nox/kofnnkjglfpbpjcnkapnnlikenejhfhh
Description nox - darkmode anywhere
File Size 4.54 MB
Installation Count 26
Current Version 0.0.2
Last Updated 2023-06-12
Publish Date 2023-01-23
Developer https://jabroniverse.blogspot.com
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "nox",
    "action": {
        "default_popup": ".\/index.html",
        "default_title": "nox [alpha]"
    },
    "manifest_version": 3,
    "version": "0.0.2",
    "description": "nox - darkmode anywhere",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                ".\/assets\/*",
                ".\/extras\/*",
                ".\/static\/*",
                "*.png",
                "favicon.ico"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/extras\/js\/content.js"
            ]
        }
    ],
    "icons": {
        "192": ".\/logo192.png"
    },
    "background": {
        "service_worker": ".\/extras\/js\/background.js",
        "type": "module"
    }
}