Dark Mode Sync
Sync dark mode with websites
什么是Dark Mode Sync?
Dark Mode Sync是由Eric Chen开发的Chrome扩展程序,该扩展的主要功能是“Sync dark mode with websites”。
扩展截图
下载Dark Mode Sync扩展crx文件
下载Dark Mode Sync扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Make websites that support dark mode match your system's dark mode.
Supported websites:
* Youtube
* Reddit
* Stack Overflow
* Twitter
* Twitch 扩展基本信息
| 名称 | |
| ID | hpioldggkhofifecekhgeoepibppmedn |
| 官方URL | https://chrome.google.com/webstore/detail/hpioldggkhofifecekhgeoepibppmedn |
| 简介 | Sync dark mode with websites |
| 文件大小 | 19.13 KB |
| 安装次数 | 11 |
| 当前版本 | 0.4 |
| 更新时间 | 2020-10-01 |
| 上架时间 | 2020-05-06 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Eric Chen |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://docs.google.com/document/d/1jgmA2stM6D2Z13xgw_KcJH8si77YOcmG0lK4Jx-BvrI/edit |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Dark Mode Sync",
"version": "0.4",
"description": "Sync dark mode with websites",
"browser_action": {
"default_icon": {
"32": "logo32.png",
"128": "logo128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"youtube.js"
]
},
{
"matches": [
"https:\/\/*.reddit.com\/*"
],
"js": [
"reddit.js"
]
},
{
"matches": [
"https:\/\/*.stackoverflow.com\/*"
],
"js": [
"stackoverflow.js"
]
},
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"twitter.js"
]
},
{
"matches": [
"https:\/\/*.twitch.tv\/*"
],
"js": [
"twitch.js"
]
}
],
"manifest_version": 2
} | |