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 là gì?

Dark Night Mode là một tiện ích mở rộng Chrome được phát triển bởi https://darknightmode.com, và tính năng chính của nó là "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".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Dark Night Mode 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

                        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.                    

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

Tên Dark Night Mode Dark Night Mode
ID bhbekkddpbpbibiknkcjamlkhoghieie
URL Chính Thức https://chromewebstore.google.com/detail/dark-night-mode/bhbekkddpbpbibiknkcjamlkhoghieie
Mô tả 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
Kích Thước Tệp 262 KB
Số Lần Cài Đặt 83,686
Phiên Bản Hiện Tại 2.0.6
Cập Nhật Lần Cuối 2020-06-15
Ngày Phát Hành 2020-06-15
Đánh Giá 4.20/5 Tổng số 699 Đánh Giá
Nhà Phát Triển https://darknightmode.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://darknightmode.com
URL Trang Trợ Giúp https://darknightmode.com/FAQs/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}