New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Vad är New Comments?
New Comments är en Chrome-tillägg utvecklad av Cédric Beust, och dess huvudfunktion är "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Tilläggsskärmbilder
Ladda ner New Comments-förlängningens CRX-fil
Ladda ner New Comments-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension remembers last time you visited comment threads on reddit and Hacker News and highlights the comments that were posted since your last visit. If you turn on Chrome sync, this setting will be shared across all your browsers so you can keep track of discussions even on multiple computers.
Grundläggande Information om Tillägg
Namn | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
Officiell webbadress | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Beskrivning | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Filstorlek | 41 KB |
Antal Installationer | 135 |
Aktuell Version | 15 |
Senast Uppdaterad | 2022-09-01 |
Publiceringsdatum | 2016-02-12 |
Betyg | 3.83/5 Totalt 6 Betyg |
Utvecklare | Cédric Beust |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "15", "name": "New Comments", "description": "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.", "author": "Cedric Beust", "short_name": "NewComments", "manifest_version": 2, "permissions": [ "http:\/\/reddit.com\/", "https:\/\/reddit.com\/", "http:\/\/news.ycombinator.com\/", "https:\/\/news.ycombinator.com\/", "storage" ], "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.1.min.js", "NewComments.js" ] } ], "web_accessible_resources": [ "selector.html" ] } |