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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Hacker News Collapsible Comments Hacker News Collapsible Comments
ID hockhafcdegocajmjhafgjncjpodihkd
官方網址 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
        }
    ]
}