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
        }
    ]
}