Website Dimmer

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

Τι είναι το Website Dimmer;

Το Website Dimmer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον no9, και η κύρια λειτουργία του είναι "NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Website Dimmer

Λήψη αρχείων επέκτασης Website Dimmer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Website Dimmer Website Dimmer
ID oflokebamamodefnbnaaemefecjhekcg
Επίσημο URL https://chromewebstore.google.com/detail/website-dimmer/oflokebamamodefnbnaaemefecjhekcg
Περιγραφή NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.
Μέγεθος Αρχείου 10.62 KB
Αριθμός Εγκαταστάσεων 1,189
Τρέχουσα Έκδοση 0.660
Τελευταία Ενημέρωση 2019-11-28
Ημερομηνία Δημοσίευσης 2019-11-24
Αξιολόγηση 3.73/5 Συνολικά 22 Αξιολογήσεις
Προγραμματιστής no9
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}