HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
什么是HN Dark Mode?
HN Dark Mode是由Innovative Computer Software开发的Chrome扩展程序,该扩展的主要功能是“Adds a dark theme for Hacker news (news.ycombinator.com).”。
扩展截图
下载HN Dark Mode扩展crx文件
下载HN Dark Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dark Mode can be configured to be always on or to match the operating system's dark/light theme.
This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity. 扩展基本信息
| 名称 | |
| ID | abpjflhoidbeaacggmdjoahiakcledna |
| 官方URL | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
| 简介 | Adds a dark theme for Hacker news (news.ycombinator.com). |
| 文件大小 | 169 KB |
| 安装次数 | 56 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2022-04-07 |
| 上架时间 | 2022-03-04 |
| 开发者 | Innovative Computer Software |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://icsusa.com/public/hndarkmode.html |
| 帮助页面URL | https://icsusa.com/public/hndarkmode.html |
| 隐私政策页面URL | https://www.icsusa.com/public/absoluteprivacy.html |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.0.3",
"icons": {
"48": "images\/HackerNewsColor-48.png",
"96": "images\/HackerNewsColor-96.png",
"128": "images\/HackerNewsColor-128.png",
"256": "images\/HackerNewsColor-256.png",
"512": "images\/HackerNewsColor-512.png"
},
"background": {
"service_worker": "background.js",
"_scripts": [
"background.js"
],
"_persistent": false
},
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"style.css"
],
"matches": [
"*:\/\/news.ycombinator.com\/*"
]
}
],
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
]
} | |