Material Design - Custom Dark Mode
Load custom css to set dark mode for some websites.
什麼是Material Design - Custom Dark Mode?
Material Design - Custom Dark Mode是由arnoutpullen開發的Chrome擴展程式,該擴展的主要功能是“Load custom css to set dark mode for some websites.”。
擴展截圖
下載Material Design - Custom Dark Mode擴展crx文件
下載Material Design - Custom Dark Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Custom dark mode for websites.
Included websites:
- tweakers.net
- 9gag.com
Todo:
- google.com / google.nl
- toggle darkmode for current site
- add custom css to current page 擴展基本資訊
| 名稱 | |
| ID | gbenagmjagpjjpoeaigbmggjjmfieefn |
| 官方網址 | https://chromewebstore.google.com/detail/material-design-custom-da/gbenagmjagpjjpoeaigbmggjjmfieefn |
| 簡介 | Load custom css to set dark mode for some websites. |
| 檔案大小 | 1.24 MB |
| 安裝次數 | 32 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2018-11-22 |
| 上架時間 | 2018-11-22 |
| 評分 | 5.00/5 共 6 次評分 |
| 開發者 | arnoutpullen |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://github.com/ArnoutPullen/MaterialDarkModeExtension |
| 支援的語言 | nl |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Material Design - Custom Dark Mode",
"description": "Load custom css to set dark mode for some websites.",
"version": "1.0.1",
"author": "Arnout Pullen",
"browser_action": {
"default_icon": "assets\/material-icon-128-128.png",
"default_title": "Dark Mode"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.tweakers.net\/*"
],
"css": [
"sites\/tweakers\/tweakers.css"
]
},
{
"matches": [
"https:\/\/9gag.com\/*"
],
"css": [
"sites\/9gag\/9gag.css"
]
}
],
"icons": {
"16": "assets\/material-icon-16-16.png",
"32": "assets\/material-icon-32-32.png",
"48": "assets\/material-icon-48-48.png",
"128": "assets\/material-icon-128-128.png"
}
} | |