Yet Another YouTube Comment Filter
Filters comments on YouTube.
Yet Another YouTube Comment Filter là gì?
Yet Another YouTube Comment Filter là một tiện ích mở rộng Chrome được phát triển bởi Yosuke Mizutani, và tính năng chính của nó là "Filters comments on YouTube.".
Ả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 Yet Another YouTube Comment Filter
Tải xuống các tệp mở rộng Yet Another YouTube Comment Filter 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 provides a comment filter on YouTube. - Language Filter: You can configure the languages you want to see. - Blocked Words: You can hide the comments that include specific keywords. - Reply Filter: You can filter replies in addition to independent comments. - Filter On/Off Button: You can turn on/off the filter for each tab.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Yet Another YouTube Comment Filter |
ID | kdmngkpgnecnahcpkdcmbcekonkcbdpc |
URL Chính Thức | https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc |
Mô tả | Filters comments on YouTube. |
Kích Thước Tệp | 113 KB |
Số Lần Cài Đặt | 841 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2022-05-03 |
Ngày Phát Hành | 2021-01-03 |
Đánh Giá | 4.25/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Yosuke Mizutani |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mogproject/yay-filter |
Ngôn Ngữ Được Hỗ Trợ | en,ru,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Yet Another YouTube Comment Filter", "version": "0.2.1", "description": "Filters comments on YouTube.", "author": "Yosuke Mizutani", "permissions": [ "storage" ], "background": { "scripts": [ "js\/browser-polyfill.min.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/browser-polyfill.min.js", "js\/content.js" ], "css": [ "css\/yay-filter.css" ], "run_at": "document_idle" } ], "browser_action": { "default_title": "Yay Filter", "default_popup": "popup.html" }, "icons": { "16": "icons\/yayFilterIcon16.png", "32": "icons\/yayFilterIcon32.png", "48": "icons\/yayFilterIcon48.png", "96": "icons\/yayFilterIcon96.png", "128": "icons\/yayFilterIcon128.png" }, "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter", "default_locale": "en" } |