Dark Night Mode

It is a night mode for the entire Internet. It darkens all the websites you visit so that you can browse without straining your eyes

什麼是Dark Night Mode?

Dark Night Mode是由https://darknightmode.com開發的Chrome擴展程式,該擴展的主要功能是“It is a night mode for the entire Internet. It darkens all the websites you visit so that you can browse without straining your eyes”。

擴展截圖

screenshot
screenshot
screenshot

下載Dark Night Mode擴展crx文件

下載Dark Night Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Dark Night Mode is a Free Open Source Software which makes all the websites you browse into dark/night mode so that you can browse the internet without straining your eyes. It is an extremely useful chrome extension for those who use internet especially at night.

We use a unique algorithm to apply dark mode to all the websites in real-time as you browse. It basically detects the color of each element of a website and intelligently converts it to a darker shade. Bright colors are darkened at more intensity than dark colors so that most of the colors are preserved. Unlike other similar extensions, we do NOT invert the colors, so black websites will not change its color into white. An added benefit is that the images will also not be distorted! I think we were hit by the one-star-bot-ratings because we were the only extension to have this intelligent-algorithm. Now, after this extension became popular,  one another super famous extension have copied this feature of ours.

We have also put immense effort in eliminating the flashes of bright white screen while loading different websites. It was a challenging task due to the limitations of chrome, but we were able to eliminate this problem with 99.9% success rate.

Using the brightness slider, you can adjust the brightness of your browser beyond what your computer's brightness adjuster allows. This is useful in dimming the brightness to your likening. For example, by default the images are shown with normal color, but you can darken it by sliding down the brightness slider.

There is also an Auto mode which will automatically turn on the Dark Mode at night 8:00PM and will turn off at morning 6:00AM. It was complicated to develop an option to customize this timing, but we are working on it and may add this option in the future versions.

There is also Whitelist feature which can be helpful if you do not want the dark mode to work on certain websites.

Since this extension will darken all the websites you visit at night, you will initially not enjoy it due to the huge change in your routine. However, our internal studies have shown that people start getting used to it after about three weeks of use. Some people have claimed that this extension helps them sleep better while some others have said that it helped them reduce the burning sensation in their eyes caused by extensive browsing of the internet in the dark.

This plugin is NOT 100% perfect. It never will be perfect because many websites are developed in a non-standard fashion and there is no easy way to detect a site and perfectly change its colors in real time withing milli-seconds so that the user do not see the bright colors. It is a double edged sword - If we add more conditions to make the algorithm smarter, then it will affect the processing speed and the user will see flashes of white light, so we had to make some choices to get an optimal balance.

If you want your browser window to also look black similar to how it is shown in the screenshots, then you must install a Dark Chrome theme as well. We suggest to search "Morpheon Dark Theme" and install it in google chrome.

It took us - two developers two whole months of full time developmental efforts to conceptualize, design, code, test, calibrate and deploy this extension. We had initially started it as a side project aiming to make it in couple of days, but it ended up taking significantly more time than expected! We hope you enjoy it.                    

擴展基本資訊

名稱 Dark Night Mode Dark Night Mode
ID bhbekkddpbpbibiknkcjamlkhoghieie
官方網址 https://chromewebstore.google.com/detail/dark-night-mode/bhbekkddpbpbibiknkcjamlkhoghieie
簡介 It is a night mode for the entire Internet. It darkens all the websites you visit so that you can browse without straining your eyes
檔案大小 262 KB
安裝次數 83,686
目前版本 2.0.6
更新時間 2020-06-15
上架時間 2020-06-15
評分 4.20/5 共 699 次評分
開發者 https://darknightmode.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://darknightmode.com
說明頁面URL https://darknightmode.com/FAQs/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.6",
    "name": "Dark Night Mode",
    "manifest_version": 2,
    "short_name": "darknightmode",
    "description": "It is a night mode for the entire Internet. It darkens all the websites you visit so that you can browse without straining your eyes",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "css\/*.css"
    ],
    "homepage_url": "https:\/\/darknightmode.com",
    "options_page": "templates\/options.html",
    "offline_enabled": true,
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "templates\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ]
}