Hacker News Notification
Top 30 Hacker News Notification
What is Hacker News Notification?
Hacker News Notification is a Chrome extension developed by http://www.maxy.fr, and its main feature is "Top 30 Hacker News Notification".
Extension Screenshots
Download Hacker News Notification Extension CRX File
Download Hacker News Notification 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
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.
Extension Basic Information
Name | |
ID | bfiigomihpgomgcnkjiclpcldefojggb |
Official URL | https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb |
Description | Top 30 Hacker News Notification |
File Size | 525 KB |
Installation Count | 11 |
Current Version | 2.2 |
Last Updated | 2016-08-08 |
Publish Date | 2016-08-08 |
Developer | http://www.maxy.fr |
Payment Type | free |
Extension Website | http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification |
Supported Languages | 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" ] } |