Better Dark Mode

Give pages a better dark mode by avoiding things like full white text on full black background.

What is Better Dark Mode?

Better Dark Mode is a Chrome extension developed by f, and its main feature is "Give pages a better dark mode by avoiding things like full white text on full black background.".

Extension Screenshots

screenshot
screenshot

Download Better Dark Mode Extension CRX File

Download Better Dark Mode 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

                        - Creates a dark mode of any page by inverting the original colors, background-colors, border-colors.
- Unlike most "dark modes," Better Dark Mode reduces eye-strain by not allowing any RGB values below 50 or above 200 by default.  Darkness and brightness limits can be customized by user.

Potential updates:
- Find a way to avoid flash of non-darkened page before extension runs on page load
- Store the active/inactive state as well as darkness/brightness limit variables Chrome-wide (currently using localStorage)                    

Extension Basic Information

Name Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
Official URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
Description Give pages a better dark mode by avoiding things like full white text on full black background.
File Size 32.05 KB
Installation Count 5,638
Current Version 0.9.4
Last Updated 2017-09-23
Publish Date 2017-09-23
Rating 3.46/5 Total 26 Ratings
Developer f
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Dark Mode",
    "short_name": "Better Dark",
    "description": "Give pages a better dark mode by avoiding things like full white text on full black background.",
    "version": "0.9.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "insert.js"
            ]
        }
    ]
}