Hacker News Highlighter
A subtle indicator of popular posts on Hacker News
What is Hacker News Highlighter?
Hacker News Highlighter is a Chrome extension developed by Peter Organisciak, and its main feature is "A subtle indicator of popular posts on Hacker News".
Extension Screenshots
Download Hacker News Highlighter Extension CRX File
Download Hacker News Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Hacker News Highlighter |
ID | anknmonokijobdggekbkodmmaefckoob |
Official URL | https://chromewebstore.google.com/detail/hacker-news-highlighter/anknmonokijobdggekbkodmmaefckoob |
Description | A subtle indicator of popular posts on Hacker News |
File Size | 50.03 KB |
Installation Count | 88 |
Current Version | 0.7 |
Last Updated | 2013-03-19 |
Publish Date | 2013-03-19 |
Rating | 3.67/5 Total 3 Ratings |
Developer | Peter Organisciak |
Payment Type | free |
Supported Languages | 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" } ] } |