New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
New Comments là gì?
New Comments là một tiện ích mở rộng Chrome được phát triển bởi Cédric Beust, và tính năng chính của nó là "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng New Comments
Tải xuống các tệp mở rộng New Comments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
URL Chính Thức | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Mô tả | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Kích Thước Tệp | 41 KB |
Số Lần Cài Đặt | 135 |
Phiên Bản Hiện Tại | 15 |
Cập Nhật Lần Cuối | 2022-09-01 |
Ngày Phát Hành | 2016-02-12 |
Đánh Giá | 3.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Cédric Beust |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |