Hacker News Comments Notifier Plugin
Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published
Hacker News Comments Notifier Plugin क्या है?
Hacker News Comments Notifier Plugin https://www.binomads.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hacker News Comments Notifier Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
- Get notifications of Hacker News' threads. - Receive notifications each 10 minutes of the threads you get subscribed to. - At the original HN website - https://news.ycombinator.com - new comments show up. - Click on the extension badge to see the list of subscribed threads, with HN original look and feel. - See the unread comments just at the extension badge. * This extension hasn't been tested together with other Hacker News Extensions. Make sure you uninstall other Hacker News extensions or deactivate them * Do you want other features? You found a bug? Report here: https://github.com/binomads/hn-notification-plugin See a GIF of how it works here: https://user-images.githubusercontent.com/84540/32239715-9b77868a-be6b-11e7-9543-4858fe292d5f.gif
एक्सटेंशन की मूल जानकारी
नाम | Hacker News Comments Notifier Plugin |
ID | fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
आधिकारिक URL | https://chromewebstore.google.com/detail/hacker-news-comments-noti/fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
विवरण | Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published |
फ़ाइल का आकार | 30.68 KB |
स्थापना संख्या | 16 |
वर्तमान संस्करण | 0.0.11 |
अंतिम अपडेट | 2017-10-31 |
प्रकाशन तिथि | 2017-10-31 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://www.binomads.com |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/binomads/hn-notification-plugin |
सहायता पृष्ठ URL | https://github.com/binomads/hn-notification-plugin |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Comments Notifier Plugin", "description": "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published", "version": "0.0.11", "manifest_version": 2, "short_name": "Hacker News Comments Notifier", "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "i.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "default_title": "Hacker News Notifier", "default_popup": "popup.html" }, "icons": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "background": { "scripts": [ "b.js" ] }, "permissions": [ "notifications", "tabs", "https:\/\/hacker-news.firebaseio.com\/v0\/item\/*" ], "web_accessible_resources": [ "icons\/hn_128.png" ] } |