hckr news

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

What is hckr news?

hckr news is a Chrome extension developed by https://hckrnews.com, and its main feature is "Add functionality to news.ycombinator.com and hckrnews.com".

Extension Screenshots

screenshot
screenshot

Download hckr news Extension CRX File

Download hckr news extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
Official URL https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
Description Add functionality to news.ycombinator.com and hckrnews.com
File Size 52.15 KB
Installation Count 1,010
Current Version 2.0
Last Updated 2020-01-07
Publish Date 2020-01-07
Rating 4.59/5 Total 17 Ratings
Developer https://hckrnews.com
Payment Type free
Extension Website http://hckrnews.com/about.html
Supported Languages 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"
            ]
        }
    ]
}