Hacker News: Mark All Read
Save time on HN by marking read the titles and comments you already scanned
Τι είναι το Hacker News: Mark All Read;
Το Hacker News: Mark All Read είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dan Mazzini (danmaz74), και η κύρια λειτουργία του είναι "Save time on HN by marking read the titles and comments you already scanned".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hacker News: Mark All Read
Λήψη αρχείων επέκτασης Hacker News: Mark All Read σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Use this extension to mark all news items in a Hacker News listing page as read. This way, when you reload the page, you will be able to immediately spot the new items that you haven't scanned yet, because only those new items links will show a "not visited" color. You can also hide the items you marked as read. The data about marked as read items is stored on your local browser and is shared between HN pages: If you mark an item as read on the "news" page and it later makes it into the home, you will see it as read in the home too. You can also choose to follow the comments of a news item: If you do so, the item will appear (with a different color) in the home page even if it was marked as read. You can mark the comments as read, and read the number of unread comments in the home page. Last but not least, you can collapse comment threads, and show the parent of a comment you're reading by hovering on the "show parent" link. This way following discussions with lots of comments becomes easier. Enjoy!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hacker News: Mark All Read |
ID | ogfbcfkihdkplelnaenpgkhnkpoaggjc |
Επίσημο URL | https://chromewebstore.google.com/detail/hacker-news-mark-all-read/ogfbcfkihdkplelnaenpgkhnkpoaggjc |
Περιγραφή | Save time on HN by marking read the titles and comments you already scanned |
Μέγεθος Αρχείου | 43.21 KB |
Αριθμός Εγκαταστάσεων | 222 |
Τρέχουσα Έκδοση | 1.4 |
Τελευταία Ενημέρωση | 2013-03-13 |
Ημερομηνία Δημοσίευσης | 2013-03-13 |
Αξιολόγηση | 4.27/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | Dan Mazzini (danmaz74) |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://danmaz74.me/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://danmaz74.me/2012/05/27/introducing-hacker-news-mark-all-read-for-chrome/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News: Mark All Read", "version": "1.4", "manifest_version": 2, "description": "Save time on HN by marking read the titles and comments you already scanned", "content_scripts": [ { "matches": [ "*:\/\/news.ycombinator.com\/*" ], "css": [ "styles.css" ], "js": [ "jquery.min.js", "script.js" ] } ], "web_accessible_resources": [ "images\/HNMarkAllRead-18.png", "styles.css" ], "icons": { "128": "images\/HNMarkAllRead.png" } } |