Website Dimmer

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

Website Dimmer là gì?

Website Dimmer là một tiện ích mở rộng Chrome được phát triển bởi no9, và tính năng chính của nó là "NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Dimmer

Tải xuống các tệp mở rộng Website Dimmer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Dimmer Website Dimmer
ID oflokebamamodefnbnaaemefecjhekcg
URL Chính Thức https://chromewebstore.google.com/detail/website-dimmer/oflokebamamodefnbnaaemefecjhekcg
Mô tả NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages.
Kích Thước Tệp 10.62 KB
Số Lần Cài Đặt 1,189
Phiên Bản Hiện Tại 0.660
Cập Nhật Lần Cuối 2019-11-28
Ngày Phát Hành 2019-11-24
Đánh Giá 3.73/5 Tổng số 22 Đánh Giá
Nhà Phát Triển no9
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}