Better Dark Mode

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

Co je Better Dark Mode?

Better Dark Mode je rozšíření Chrome vyvinuté f, a jeho hlavní funkcí je „Give pages a better dark mode by avoiding things like full white text on full black background.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Better Dark Mode

Stáhněte si soubory rozšíření Better Dark Mode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        - 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)                    

Základní Informace o Rozšíření

Název Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
Oficiální URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
Popis Give pages a better dark mode by avoiding things like full white text on full black background.
Velikost souboru 32.05 KB
Počet instalací 5,638
Aktuální Verze 0.9.4
Poslední Aktualizace 2017-09-23
Datum Vydání 2017-09-23
Hodnocení 3.46/5 Celkem 26 Hodnocení
Vývojář f
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}