New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Co to jest New Comments?
New Comments to rozszerzenie Chrome opracowane przez Cédric Beust, a jego główną funkcją jest „Shows new comments posted on reddit and Hacker News since you last visited a comment thread.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia New Comments
Pobierz pliki rozszerzeń New Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
Oficjalny URL | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Opis | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Rozmiar pliku | 41 KB |
Liczba instalacji | 135 |
Aktualna Wersja | 15 |
Ostatnia Aktualizacja | 2022-09-01 |
Data Publikacji | 2016-02-12 |
Ocena | 3.83/5 Łącznie 6 Oceny |
Deweloper | Cédric Beust |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |