Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
What is Dark Mode View?
Dark Mode View is a Chrome extension developed by http://darkview.org, and its main feature is "Allows you to enable all websites to be dark mode to ease eye strain. ".
Extension Screenshots
Download Dark Mode View Extension CRX File
Download Dark Mode View extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
Official URL | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Description | Allows you to enable all websites to be dark mode to ease eye strain. |
File Size | 20.61 KB |
Installation Count | 5,870 |
Current Version | 1.0 |
Last Updated | 2021-03-30 |
Publish Date | 2021-03-30 |
Rating | 4.50/5 Total 2 Ratings |
Developer | http://darkview.org |
[email protected] | |
Payment Type | free |
Extension Website | https://darkview.org/ |
Help Page URL | https://darkview.org/ |
Supported Languages | 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" ] } |