Hacker News Collapsible Comments
Adds reddit-like [+] and [-] links to collapse and expand comment threads.
What is Hacker News Collapsible Comments?
Hacker News Collapsible Comments is a Chrome extension developed by muitocomplicado, and its main feature is "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".
Extension Screenshots
Download Hacker News Collapsible Comments Extension CRX File
Download Hacker News Collapsible Comments 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
Based on the bookmarklet code by niyazpk. https://github.com/niyazpk/Collapsible-comments-for-Hacker-News v1.3 - Added support for https and updated the collapsible comments script.
Extension Basic Information
Name | Hacker News Collapsible Comments |
ID | hockhafcdegocajmjhafgjncjpodihkd |
Official URL | https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd |
Description | Adds reddit-like [+] and [-] links to collapse and expand comment threads. |
File Size | 42.23 KB |
Installation Count | 283 |
Current Version | 1.3 |
Last Updated | 2013-03-12 |
Publish Date | 2013-03-12 |
Rating | 4.67/5 Total 27 Ratings |
Developer | muitocomplicado |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Collapsible Comments", "version": "1.3", "manifest_version": 2, "description": "Adds reddit-like [+] and [-] links to collapse and expand comment threads.", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "https:\/\/news.ycombinator.com\/*", "http:\/\/hackerne.ws\/*", "https:\/\/hackerne.ws\/*" ], "js": [ "jquery.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |