darkify
darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.
darkifyとは何ですか?
darkifyはHeilerAppsによって開発されたChromeの拡張機能で、その主な機能は「darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.」です。
拡張機能のスクリーンショット
darkify拡張機能のCRXファイルをダウンロード
darkify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The darkify extension will try to modify every website to a dark version of it. You can configure it to automatically run on a period of time, exclude some pages or manually start and stoping it.
If you have any improvement ideas or bugs, please report them here: https://github.com/gheiler/darkify/issues
Also if you want to contribute feel free to create a pull request.
Enjoy!
Gabriel 拡張機能の基本情報
| 名前 | |
| ID | lchabmjccahchaflojonfbepjbbnipfc |
| 公式URL | https://chromewebstore.google.com/detail/darkify/lchabmjccahchaflojonfbepjbbnipfc |
| 説明 | darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it. |
| ファイルサイズ | 77.93 KB |
| インストール数 | 318 |
| 現在のバージョン | 0.2.2 |
| 最終更新日 | 2022-09-21 |
| 公開日 | 2020-04-15 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | HeilerApps |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://gabriel.heiler.dev |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "darkify",
"version": "0.2.2",
"description": "darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.",
"author": "Gabriel Heiler",
"homepage_url": "https:\/\/gabriel.heiler.dev",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs",
"activeTab",
"declarativeContent",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"css\/basics.css"
],
"js": [
"js\/startscript.js"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"css\/basics.css"
],
"js": [
"js\/contentscript.js"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"background": {
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"*"
],
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "img\/darkify-16.png",
"32": "img\/darkify-32.png",
"48": "img\/darkify.png",
"128": "img\/darkify-128.png"
}
},
"options_page": "options.html",
"icons": {
"16": "img\/darkify-16.png",
"32": "img\/darkify-32.png",
"48": "img\/darkify-48.png",
"128": "img\/darkify-128.png"
},
"web_accessible_resources": [
"css\/basics.css",
"css\/extras.css"
],
"manifest_version": 2
} | |