Instant Dark Mode

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

Cos'è Instant Dark Mode?

Instant Dark Mode è un'estensione di Chrome sviluppata da https://www.seabreezecomputers.com, e la sua funzione principale è "Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Instant Dark Mode

Scarica i file di estensione Instant Dark Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Instant Dark Mode Instant Dark Mode
ID gncbffnejajebniepdoabjhjeahbknap
URL Ufficiale https://chromewebstore.google.com/detail/instant-dark-mode/gncbffnejajebniepdoabjhjeahbknap
Descrizione Lightweight extension to instantly invert website colors for dark mode. Smart invert does not invert colors on images and videos.
Dimensione del File 36.68 KB
Conteggio Installazioni 1,722
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-09-13
Data di Pubblicazione 2021-06-02
Valutazione 3.25/5 Totale 4 Valutazioni
Sviluppatore https://www.seabreezecomputers.com
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://seabreezecomputers.com/darkmode/extension/purchase/
URL della Pagina della Politica sulla Privacy http://seabreezecomputers.com/privacy.htm
Lingue Supportate 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"
        }
    ]
}