Hacker News Notification

Top 30 Hacker News Notification

Hacker News Notification là gì?

Hacker News Notification là một tiện ích mở rộng Chrome được phát triển bởi http://www.maxy.fr, và tính năng chính của nó là "Top 30 Hacker News Notification".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hacker News Notification

Tải xuống các tệp mở rộng Hacker News Notification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
URL Chính Thức https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
Mô tả Top 30 Hacker News Notification
Kích Thước Tệp 525 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2016-08-08
Ngày Phát Hành 2016-08-08
Nhà Phát Triển http://www.maxy.fr
Loại Thanh Toán free
Trang Web Mở Rộng http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}