YouTube Comments
YouTube comments chrome extension
YouTube Comments là gì?
YouTube Comments là một tiện ích mở rộng Chrome được phát triển bởi https://tomorrowapps.com, và tính năng chính của nó là "YouTube comments chrome extension".
Ả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 YouTube Comments
Tải xuống các tệp mở rộng YouTube 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
YTC Extension makes youtube comments reading easier. This allows users to go directly to the comment section and read them right away. Most users who already watched a certain video want to read comments right away but waiting for the video to load so they can pause it is a hassle. YTC automates that process and makes it easier for the user. YTC is very useful for youtubers, channels owners, subscibers and even for trolls who are looking for jokes in the comment section. Have fun!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
Mô tả | YouTube comments chrome extension |
Kích Thước Tệp | 924 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-07-08 |
Ngày Phát Hành | 2018-07-08 |
Đánh Giá | 2.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://tomorrowapps.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://tomorrowapps.com/ytc |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Comments", "short_name": "YTC Extension", "version": "1.0", "description": "YouTube comments chrome extension", "manifest_version": 2, "permissions": [ "tabs", "activeTab", "declarativeContent", "storage", "webRequest", "*:\/\/*.youtube.com\/*", "webRequestBlocking" ], "content_scripts": [ { "all_frames": true, "js": [ "libs\/jquery.min.js", "content.js" ], "match_about_blank": true, "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" } }, "icons": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |