Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
Wat is Dark Mode View?
Dark Mode View is een Chrome-extensie ontwikkeld door http://darkview.org, en de belangrijkste functie is "Allows you to enable all websites to be dark mode to ease eye strain. ".
Extensie Screenshots
Download het CRX-bestand van de extensie Dark Mode View
Download Dark Mode View-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
Officiële URL | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Beschrijving | Allows you to enable all websites to be dark mode to ease eye strain. |
Bestandsgrootte | 20.61 KB |
Aantal Installaties | 5,870 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2021-03-30 |
Publicatiedatum | 2021-03-30 |
Beoordeling | 4.50/5 Totaal 2 Beoordelingen |
Ontwikkelaar | http://darkview.org |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://darkview.org/ |
Help Pagina-URL | https://darkview.org/ |
Ondersteunde Talen | 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" ] } |