Hacker News Collapsible Comments

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

Wat is Hacker News Collapsible Comments?

Hacker News Collapsible Comments is een Chrome-extensie ontwikkeld door muitocomplicado, en de belangrijkste functie is "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hacker News Collapsible Comments

Download Hacker News Collapsible Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hacker News Collapsible Comments Hacker News Collapsible Comments
ID hockhafcdegocajmjhafgjncjpodihkd
Officiële URL https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd
Beschrijving Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Bestandsgrootte 42.23 KB
Aantal Installaties 283
Huidige Versie 1.3
Laatst Bijgewerkt 2013-03-12
Publicatiedatum 2013-03-12
Beoordeling 4.67/5 Totaal 27 Beoordelingen
Ontwikkelaar muitocomplicado
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}