Hacker News Collapsible Comments

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

Co to jest Hacker News Collapsible Comments?

Hacker News Collapsible Comments to rozszerzenie Chrome opracowane przez muitocomplicado, a jego główną funkcją jest „Adds reddit-like [+] and [-] links to collapse and expand comment threads.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Hacker News Collapsible Comments

Pobierz pliki rozszerzeń Hacker News Collapsible Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hacker News Collapsible Comments Hacker News Collapsible Comments
ID hockhafcdegocajmjhafgjncjpodihkd
Oficjalny URL https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd
Opis Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Rozmiar pliku 42.23 KB
Liczba instalacji 283
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2013-03-12
Data Publikacji 2013-03-12
Ocena 4.67/5 Łącznie 27 Oceny
Deweloper muitocomplicado
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}