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 |
公式URL | 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 |
Eメール | [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" ] } |