HN Enhance
An extension that enhances news.ycombinator website.
什么是HN Enhance?
HN Enhance是由Alvaro Bernal G开发的Chrome扩展程序,该扩展的主要功能是“An extension that enhances news.ycombinator website.”。
扩展截图
下载HN Enhance扩展crx文件
下载HN Enhance扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features:
- Displays a military rank badge alongside the username. Rank is obtained
according to the following proportion: Karma 1:1 Seniority.
- A minimalist black theme that is easy to to the eyes. 扩展基本信息
| 名称 | |
| ID | dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| 官方URL | https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| 简介 | An extension that enhances news.ycombinator website. |
| 文件大小 | 74.79 KB |
| 安装次数 | 93 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2019-04-04 |
| 上架时间 | 2019-04-04 |
| 评分 | 4.50/5 共8次评分 |
| 开发者 | Alvaro Bernal G |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://alvarobg.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HN Enhance",
"manifest_version": 2,
"author": "Alvaro Bernal",
"version": "0.1.0",
"description": "An extension that enhances news.ycombinator website.",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons\/icon-128.png",
"default_title": "HN Enhance"
},
"web_accessible_resources": [
"*.woff",
"*.svg"
],
"icons": {
"16": "icons\/icon-16.png",
"38": "icons\/icon-38.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"http:\/\/news.ycombinator.com\/*",
"https:\/\/news.ycombinator.com\/*"
],
"css": [
"style.css",
"ranks.css"
],
"js": [
"contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
]
} | |