Hacker News Notification

Top 30 Hacker News Notification

什么是Hacker News Notification?

Hacker News Notification是由http://www.maxy.fr开发的Chrome扩展程序,该扩展的主要功能是“Top 30 Hacker News Notification”。

扩展截图

screenshot
screenshot

下载Hacker News Notification扩展crx文件

下载Hacker News Notification扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Receive notification for each new article published in the top 30 of Hacker News.

V2.2 : 2016-08-09 : The notification problem has been fixed
V2.1 :  2014 : Adding indications Up (U), Down  (D) or Equal (=) for the classification.
V2.0 :  2014 : You can now show the list of all articles directly by clicking on the icon on the top right.                    

扩展基本信息

名称 Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
官方URL https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
简介 Top 30 Hacker News Notification
文件大小 525 KB
安装次数 11
当前版本 2.2
更新时间 2016-08-08
上架时间 2016-08-08
开发者 http://www.maxy.fr
付费类型 free
扩展官网 http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Notification",
    "version": "2.2",
    "manifest_version": 2,
    "description": "Top 30 Hacker News Notification",
    "permissions": [
        "notifications",
        "background",
        "tabs",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/logo19.png",
            "38": "img\/logo39.png"
        },
        "default_title": "Hacker News Notification",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/popup.js",
                "js\/background.js"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo.png"
    },
    "web_accessible_resources": [
        "js\/background.js"
    ]
}