Hacker News Collapsible Comments
Adds reddit-like [+] and [-] links to collapse and expand comment threads.
什么是Hacker News Collapsible Comments?
Hacker News Collapsible Comments是由muitocomplicado开发的Chrome扩展程序,该扩展的主要功能是“Adds reddit-like [+] and [-] links to collapse and expand comment threads.”。
扩展截图
下载Hacker News Collapsible Comments扩展crx文件
下载Hacker News Collapsible Comments扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | hockhafcdegocajmjhafgjncjpodihkd |
| 官方URL | https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd |
| 简介 | Adds reddit-like [+] and [-] links to collapse and expand comment threads. |
| 文件大小 | 42.23 KB |
| 安装次数 | 283 |
| 当前版本 | 1.3 |
| 更新时间 | 2013-03-12 |
| 上架时间 | 2013-03-12 |
| 评分 | 4.67/5 共27次评分 |
| 开发者 | muitocomplicado |
| 付费类型 | free |
| 支持的语言 | 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
}
]
} | |