Better Dark Mode

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

Wat is Better Dark Mode?

Better Dark Mode is een Chrome-extensie ontwikkeld door f, en de belangrijkste functie is "Give pages a better dark mode by avoiding things like full white text on full black background.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Better Dark Mode

Download Better Dark Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
Officiële URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
Beschrijving Give pages a better dark mode by avoiding things like full white text on full black background.
Bestandsgrootte 32.05 KB
Aantal Installaties 5,638
Huidige Versie 0.9.4
Laatst Bijgewerkt 2017-09-23
Publicatiedatum 2017-09-23
Beoordeling 3.46/5 Totaal 26 Beoordelingen
Ontwikkelaar f
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}