Website Dimmer

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

Website Dimmer란 무엇입니까?

Website Dimmer은(는) no9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NIGHT MODE FOR ALL WEBSITES. It darkens backgrounds of html based webpages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Website Dimmer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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"
    }
}