hckr news

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

什么是hckr news?

hckr news是由https://hckrnews.com开发的Chrome扩展程序,该扩展的主要功能是“Add functionality to news.ycombinator.com and hckrnews.com”。

扩展截图

screenshot
screenshot

下载hckr news扩展crx文件

下载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"
            ]
        }
    ]
}