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