Hacker News Collapsible Comments

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

Hacker News Collapsible Commentsคืออะไร?

Hacker News Collapsible Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย muitocomplicado และคุณลักษณะหลักของมันคือ "Adds reddit-like [+] and [-] links to collapse and expand comment threads."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hacker News Collapsible Comments

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
        }
    ]
}