feel dark

feel dark is a simple dark mode for web pages

What is feel dark?

feel dark is a Chrome extension developed by michaeldatkins2x5s, and its main feature is "feel dark is a simple dark mode for web pages".

Extension Screenshots

screenshot

Download feel dark Extension CRX File

Download feel dark 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

                        make web page look dark using feel dark mode
1)open web page example:  lipsum.com
2)click on extension icon to turn on dark mode                    

Extension Basic Information

Name feel dark feel dark
ID gbihkmhglihpmafmgbihhehhonmklcmc
Official URL https://chrome.google.com/webstore/detail/feel-dark/gbihkmhglihpmafmgbihhehhonmklcmc
Description feel dark is a simple dark mode for web pages
File Size 40.22 KB
Installation Count 935
Current Version 0.1
Last Updated 2022-03-09
Publish Date 2022-03-09
Developer michaeldatkins2x5s
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "feel dark",
    "version": "0.1",
    "manifest_version": 3,
    "description": "feel dark is a  simple dark mode for web pages",
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}