HN Unread Comments
Shows unread comments on Hacker News (http://news.ycombinator.com/)
HN Unread Comments क्या है?
HN Unread Comments Jan Hančič द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows unread comments on Hacker News (http://news.ycombinator.com/)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HN Unread Comments एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will keep track of comments you read on Hacker News and then show you which ones are new (it works on the "threads" page and on a individual item). v1.3.0 changes so that the border on unread comments is only visible on the left, and is now 2px thick v1.2 fixes the extension so that it now works on HN again. v1.1 fixes some issues with detecting comments. It now uses a different way to track read comments, and should be more reliable. Leave comments if you find any bugs. Source code is freely available on GitHub: http://github.com/janhancic/hn-unread-comments
एक्सटेंशन की मूल जानकारी
नाम | HN Unread Comments |
ID | fpndmkcfggkffpablcooicmihgcgalil |
आधिकारिक URL | https://chromewebstore.google.com/detail/hn-unread-comments/fpndmkcfggkffpablcooicmihgcgalil |
विवरण | Shows unread comments on Hacker News (http://news.ycombinator.com/) |
फ़ाइल का आकार | 44.29 KB |
स्थापना संख्या | 20 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2013-10-26 |
प्रकाशन तिथि | 2013-10-26 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Jan Hančič |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://hancic.info/hn-unread-comments |
सहायता पृष्ठ URL | http://github.com/janhancic/hn-unread-comments/issues |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HN Unread Comments", "short_name": "HN Unread Comments", "manifest_version": 2, "version": "1.3", "description": "Shows unread comments on Hacker News (http:\/\/news.ycombinator.com\/)", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/item?id=*", "https:\/\/news.ycombinator.com\/threads?id=*" ], "js": [ "lib\/jquery.js", "lib\/phpjs.js", "lib\/storage_object.js", "src\/hn_unread_comments.js" ] } ], "permissions": [ "unlimitedStorage" ] } |