Instant Dark Mode

Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos.

Instant Dark Mode란 무엇입니까?

Instant Dark Mode은(는) https://www.seabreezecomputers.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Instant Dark Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Instant Dark Mode

Lightweight extension to instantly invert website colors for dark mode. It uses a smart invert that does not invert colors on most images and videos.

How To Use:

1. Go to any website that is not a chrome:// page, a new tab or the Chrome Web Store
2. Click on the Instant Dark Mode extension icon 🌙
3. Click on "Start/Stop"

NOTE: If you do not see the extension icon on the Chrome toolbar then click on the "Extensions" icon that looks like a jigsaw puzzle piece on the Chrome toolbar. Look for "Instant Dark Mode" extension and then click on the pin icon 📌 next to it.

NOTE: Chrome extensions are not allowed and will not work on special chrome:// pages or the new tab or Chrome Web Store.

Options Available For Purchase:

* Invert website colors
* Invert images and videos
* Deep scan to invert background images (and some images in iFrames)
* Add gray background to images with transparent backgrounds
* Invert canvas element (Some games, some images and Google Sheets)
* Start automatically with Chrome browser
* Enable keyboard shortcut Start/Stop. (Default Alt+i). Change shortcut key at: chrome://extensions/shortcuts
* Detect if website already has dark mode and do not invert
* Darken background colors that do not invert well

Notes: You may want to use "Invert images and videos" by itself to make image colors look normal if you are using an OS inverter such as Windows Magnifier or MAC OS Accessibility > Display > Invert Colors. Adding a gray background to images with transparent backgrounds makes it easier to see black icons on some websites like Gmail.

Version History

9/10/2022 - Version 1.0.0
+ Updated to Manifest V3
+ Changed CSS color scheme

9/29/2021 - Version 0.9.4
+Added option: "Don't invert colors when printing".

9/8/2021 - Version 0.9.3
+Fixed some license issues. 
+No longer puts gray translucent background under Youtube video controls if "Add gray background to images with transparent backgrounds" is selected but will now add the gray background to input type="image".

8/16/2021 - Version 0.9.2 - If "Detect if website already has dark mode and do not invert" was checked and a few websites were visited such as webmd.com then the extension incorrectly detected that it already had dark mode. This seems to have been fixed. The extension also might be able to detect if a website already has dark mode more quickly now. Keyboard shortcut will now also start/stop on all tabs instead of just the current tab.

6/2/2021 - Version 0.9.1 - Changed extension link to go to Chrome Web Store Listing. Changed support link to go to dark mode extension support FAQ. Changed so that background-image is removed from body tag if there is one otherwise when (re)inverting images the css will add the invert filter to the body tag again. Always adding css to documentElement and not document.head because some websites were not adding it to document.head.

5/31/2021 - Version 0.9.0 - Instant Dark Mode Extension added to Chrome Web Store                    

확장 프로그램 기본 정보

이름 Instant Dark Mode Instant Dark Mode
ID gncbffnejajebniepdoabjhjeahbknap
공식 URL https://chromewebstore.google.com/detail/instant-dark-mode/gncbffnejajebniepdoabjhjeahbknap
설명 Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos.
파일 크기 36.68 KB
설치 횟수 1,722
현재 버전 1.0.0
최근 업데이트 2022-09-13
출시 날짜 2021-06-02
평점 3.25/5 총 4 개의 평점
개발자 https://www.seabreezecomputers.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://seabreezecomputers.com/darkmode/extension/purchase/
개인정보 보호 정책 페이지 URL http://seabreezecomputers.com/privacy.htm
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Instant Dark Mode",
    "short_name": "Instant Dark",
    "author": "Jeff Baker",
    "version": "1.0.0",
    "description": "Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos.",
    "icons": {
        "16": "images\/moon16.png",
        "48": "images\/moon48.png",
        "128": "images\/moon128.png"
    },
    "permissions": [
        "identity",
        "identity.email",
        "tabs",
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.seabreezecomputers.com\/*",
        "*:\/\/seabreezecomputers.com\/*",
        "*:\/\/192.168.1.5\/*",
        ""
    ],
    "action": {
        "default_icon": "images\/moon38.png",
        "default_title": "Instant Dark Mode",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Start\/Stop"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "storage.js",
                "idm.js"
            ],
            "css": [],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/www.seabreezecomputers.com\/*",
                "*:\/\/seabreezecomputers.com\/*"
            ],
            "js": [
                "storage.js",
                "license2020.js"
            ],
            "css": [],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}