HN Unread Comments
Shows unread comments on Hacker News (http://news.ycombinator.com/)
Qu'est-ce que HN Unread Comments ?
HN Unread Comments est une extension Chrome développée par Jan Hančič, et sa fonction principale est "Shows unread comments on Hacker News (http://news.ycombinator.com/)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HN Unread Comments
Téléchargez les fichiers d'extension HN Unread Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | HN Unread Comments |
ID | fpndmkcfggkffpablcooicmihgcgalil |
URL Officiel | https://chromewebstore.google.com/detail/hn-unread-comments/fpndmkcfggkffpablcooicmihgcgalil |
Description | Shows unread comments on Hacker News (http://news.ycombinator.com/) |
Taille du Fichier | 44.29 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2013-10-26 |
Date de Publication | 2013-10-26 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Jan Hančič |
Type de Paiement | free |
Site Web de l'Extension | http://hancic.info/hn-unread-comments |
URL de la Page d'Aide | http://github.com/janhancic/hn-unread-comments/issues |
Langues Prises en Charge | 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" ] } |