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