Hacker News Comment Highlighter
Highlights unread comments in Hacker News threads
什么是Hacker News Comment Highlighter?
Hacker News Comment Highlighter是由Jonathan Bergknoff开发的Chrome扩展程序,该扩展的主要功能是“Highlights unread comments in Hacker News threads”。
扩展截图
下载Hacker News Comment Highlighter扩展crx文件
下载Hacker News Comment Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new. This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.
扩展基本信息
名称 | Hacker News Comment Highlighter |
ID | acgehogfllndeafpieloojhdmpffbjnb |
官方URL | https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb |
简介 | Highlights unread comments in Hacker News threads |
文件大小 | 13.14 KB |
安装次数 | 45 |
当前版本 | 1.0.1 |
更新时间 | 2015-08-06 |
上架时间 | 2015-08-06 |
评分 | 5.00/5 共1次评分 |
开发者 | Jonathan Bergknoff |
付费类型 | free |
扩展官网 | https://github.com/jbergknoff/hn-comment-highlighter |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News Comment Highlighter", "description": "Highlights unread comments in Hacker News threads", "version": "1.0.1", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/item?*" ], "js": [ "highlighter.js" ], "css": [ "highlighter.css" ] } ], "permissions": [ "storage" ] } |