Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
Hvad er Dark Mode View?
Dark Mode View er en Chrome-udvidelse udviklet af http://darkview.org, og dens hovedfunktion er "Allows you to enable all websites to be dark mode to ease eye strain. ".
Udvidelsesskærmbilleder
Download Dark Mode View-udvidelses-CRX-fil
Download Dark Mode View-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
Officiel URL | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Beskrivelse | Allows you to enable all websites to be dark mode to ease eye strain. |
Filstørrelse | 20.61 KB |
Antal Installationer | 5,870 |
Nuværende Version | 1.0 |
Senest Opdateret | 2021-03-30 |
Udgivelsesdato | 2021-03-30 |
Bedømmelse | 4.50/5 Samlet 2 Bedømmelser |
Udvikler | http://darkview.org |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://darkview.org/ |
Hjælpeside-URL | https://darkview.org/ |
Understøttede Sprog | 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" ] } |