Product Dark
Turn Product Hunt dark for nighttime hunting.
什么是Product Dark?
Product Dark是由https://derekbtw.com开发的Chrome扩展程序,该扩展的主要功能是“Turn Product Hunt dark for nighttime hunting.”。
扩展截图
下载Product Dark扩展crx文件
下载Product Dark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
New in 3.0.1
- Made it so profile headers are shown
- Text color changed to white in profile settings
- Other color improvements throughout the site 扩展基本信息
| 名称 | |
| ID | nbppndomekcebmldijnlmlmhidepkmbg |
| 官方URL | https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg |
| 简介 | Turn Product Hunt dark for nighttime hunting. |
| 文件大小 | 699 KB |
| 安装次数 | 68 |
| 当前版本 | 3.0.1 |
| 更新时间 | 2017-08-21 |
| 上架时间 | 2017-08-21 |
| 评分 | 2.50/5 共4次评分 |
| 开发者 | https://derekbtw.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://derekbtw.com |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Product Dark",
"version": "3.0.1",
"description": "Turn Product Hunt dark for nighttime hunting.",
"manifest_version": 2,
"permissions": [
"https:\/\/producthunt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.producthunt.com\/*"
],
"js": [
"product-dark.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_title": "Toggle Dark Theme"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
"product-dark.css"
]
} | |