Hacker News Collapsible Comments

Adds reddit-like [+] and [-] links to collapse and expand comment threads.

Hacker News Collapsible Comments là gì?

Hacker News Collapsible Comments là một tiện ích mở rộng Chrome được phát triển bởi muitocomplicado, và tính năng chính của nó là "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hacker News Collapsible Comments

Tải xuống các tệp mở rộng Hacker News Collapsible Comments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hacker News Collapsible Comments Hacker News Collapsible Comments
ID hockhafcdegocajmjhafgjncjpodihkd
URL Chính Thức https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd
Mô tả Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Kích Thước Tệp 42.23 KB
Số Lần Cài Đặt 283
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2013-03-12
Ngày Phát Hành 2013-03-12
Đánh Giá 4.67/5 Tổng số 27 Đánh Giá
Nhà Phát Triển muitocomplicado
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}