Website Dimmer

NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.

¿Qué es Website Dimmer?

Website Dimmer es una extensión de Chrome desarrollada por no9, y su función principal es "NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Website Dimmer

Descarga archivos de extensión Website Dimmer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        - new version changes DIM LEVELS calibration so please pick new ones for websites where you use it.


***NOTE: If this plugin doesn't work for you it would help me to track the issue if you include information about your browser version, system installed on your computer and what pages did you try to use with this Website Dimmer extension. Thanks. ***


NIGHT MODE for all html based websites. It basically darkens websites backgrounds and turns other elements (mostly texts) into easy readable color. If you right-click on extensions button with your mouse you will see a couple of options. 

When you switch anything in the menu (it will appear when you right click on extension button) preferences will be stored for the website you are currently on. You can save this setting as default by choosing appropriate menu option. The default will be used then for every website that doesn't have stored settings. You can clear stored settings if you don't to have it there.

Reload page after modifying settings to see the changes.

Features:
- makes all websites darker and colorizes text
- doesn't affect pictures and videos
- allows you to set NIGHT MODE and adjust settings for particular domains

Please be aware of the development stage at this point. Some changes in menu options may require to turn on and off NIGHT MODE or sometimes full reload of the webpage. Extension uses your browser storage to save your preferences which means that if you visit website and use menu to change an option the webpage domain (e.g. 'youtube.com', 'twitter.com' etc.) will be registered. It's not encrypted (yet) but hidden a little bit so your mom won't read it unless she is a clever hacker ;). Stored settings for particular website is indicated by small 's' letter on extension button.


If you set 'Dim More' option extension tries to use more aggressive way to darken backgrounds which can help if some elements don't dim (yet you want them to) but also can make some elements invisible in a few cases. Just try to see if it suits you.
'Dim Levels' menu allows you to set full blackout for background, if you chose "Dim to Full Black" or just partial dim. If you set 'or pick Dim Level:' then the number below are applied. Changing this needs to reset colors by turning NIGHT MODE on and off or reload webpage.


Permissions description:
- 'Allow access to file URLs'
This permission is not necessary if you don't open websites (.html files) from your local disk or if you don't care if plugin can operate on them.
- 'Allow in private mode'
The same goes for this permission: if you don't like to let Website Dimmer work in Private Mode this is not required.
- 'Storage'
Stores 'per domain' preferences.                    

Información Básica de la Extensión

Nombre Website Dimmer Website Dimmer
ID oflokebamamodefnbnaaemefecjhekcg
URL Oficial https://chromewebstore.google.com/detail/website-dimmer/oflokebamamodefnbnaaemefecjhekcg
Descripción NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.
Tamaño del Archivo 10.62 KB
Cantidad de Instalaciones 1,189
Versión Actual 0.660
Última Actualización 2019-11-28
Fecha de Publicación 2019-11-24
Calificación 3.73/5 Total de 22 Calificaciones
Desarrollador no9
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website Dimmer",
    "description": "NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.",
    "version": "0.660",
    "author": "[email protected]",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "WDScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Website Dimmer"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "96": "icon96.png",
        "128": "icon128.png"
    }
}