hckr news

Add functionality to news.ycombinator.com and hckrnews.com

Что такое hckr news?

hckr news - это расширение Chrome, разработанное https://hckrnews.com, и его основная функция - "Add functionality to news.ycombinator.com and hckrnews.com".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения hckr news

Скачайте файлы расширений hckr news в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The browser extension adds a few features to both Hacker News and hckr news:

* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads                    

Основная информация о расширении

Название hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
Официальный URL https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
Описание Add functionality to news.ycombinator.com and hckrnews.com
Размер файла 52.15 KB
Количество установок 1,010
Текущая Версия 2.0
Последнее Обновление 2020-01-07
Дата публикации 2020-01-07
Рейтинг 4.59/5 Всего 17 оценок
Разработчик https://hckrnews.com
Тип оплаты free
Официальный сайт расширения http://hckrnews.com/about.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hckr news",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "72": "hckrnews-72.png"
    },
    "description": "Add functionality to news.ycombinator.com and hckrnews.com",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/hckrnews.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "hckr_inject.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/item*"
            ],
            "js": [
                "browser-polyfill.js",
                "hn_inject.js",
                "jquery-1.7.1.min.js",
                "hacker_news_comment_coll.user.js"
            ]
        }
    ]
}