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 |
| 官方網址 | 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 |
| 電子郵箱 | [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
} | |