Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
什麼是Dark Mode View?
Dark Mode View是由http://darkview.org開發的Chrome擴展程式,該擴展的主要功能是“Allows you to enable all websites to be dark mode to ease eye strain. ”。
擴展截圖
下載Dark Mode View擴展crx文件
下載Dark Mode View擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
官方網址 | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
簡介 | Allows you to enable all websites to be dark mode to ease eye strain. |
檔案大小 | 20.61 KB |
安裝次數 | 5,870 |
目前版本 | 1.0 |
更新時間 | 2021-03-30 |
上架時間 | 2021-03-30 |
評分 | 4.50/5 共 2 次評分 |
開發者 | http://darkview.org |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://darkview.org/ |
說明頁面URL | https://darkview.org/ |
支援的語言 | 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" ] } |