Hacker News Highlighter
A subtle indicator of popular posts on Hacker News
什么是Hacker News Highlighter?
Hacker News Highlighter是由Peter Organisciak开发的Chrome扩展程序,该扩展的主要功能是“A subtle indicator of popular posts on Hacker News”。
扩展截图
下载Hacker News Highlighter扩展crx文件
下载Hacker News Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a small indicator of a post's popularity on Hacker News.
---
Updates:
- Fix broken selection
- Even leaner build
- Loads as soon as DOM is ready. 扩展基本信息
| 名称 | |
| ID | anknmonokijobdggekbkodmmaefckoob |
| 官方URL | https://chromewebstore.google.com/detail/hacker-news-highlighter/anknmonokijobdggekbkodmmaefckoob |
| 简介 | A subtle indicator of popular posts on Hacker News |
| 文件大小 | 50.03 KB |
| 安装次数 | 88 |
| 当前版本 | 0.7 |
| 更新时间 | 2013-03-19 |
| 上架时间 | 2013-03-19 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | Peter Organisciak |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hacker News Highlighter",
"version": "0.7",
"manifest_version": 2,
"description": "A subtle indicator of popular posts on Hacker News",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/news.ycombinator.com\/*",
"https:\/\/news.ycombinator.com\/*"
],
"js": [
"zepto.min.js",
"color-news.js"
],
"run_at": "document_start"
}
]
} | |