Hacker News Notification
Top 30 Hacker News Notification
Hacker News Notification क्या है?
Hacker News Notification http://www.maxy.fr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Top 30 Hacker News Notification"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hacker News Notification एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |