Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
Cos'è Dark Mode View?
Dark Mode View è un'estensione di Chrome sviluppata da http://darkview.org, e la sua funzione principale è "Allows you to enable all websites to be dark mode to ease eye strain. ".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dark Mode View
Scarica i file di estensione Dark Mode View 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
Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.
Informazioni di Base sull'Estensione
Nome | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
URL Ufficiale | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Descrizione | Allows you to enable all websites to be dark mode to ease eye strain. |
Dimensione del File | 20.61 KB |
Conteggio Installazioni | 5,870 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-03-30 |
Data di Pubblicazione | 2021-03-30 |
Valutazione | 4.50/5 Totale 2 Valutazioni |
Sviluppatore | http://darkview.org |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://darkview.org/ |
URL della Pagina di Aiuto | https://darkview.org/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Greg Henderson", "homepage_url": "https:\/\/darkview.org", "name": "Dark Mode View", "description": "Allows you to enable all websites to be dark mode to ease eye strain. ", "icons": { "128": "icon-128.png" }, "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "autotoggle.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Dark Mode Viewer", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ] } |