Trends v2 for YouTube™
Filter the trends how you like 'em.
Trends v2 for YouTube™ là gì?
Trends v2 for YouTube™ là một tiện ích mở rộng Chrome được phát triển bởi https://lars.koelker.dev, và tính năng chính của nó là "Filter the trends how you like 'em.".
Ả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 Trends v2 for YouTube™
Tải xuống các tệp mở rộng Trends v2 for YouTube™ 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
Trends v2 for YouTube™ allows you to filter the YouTube™ Trends. You can either block channels by their channel name/id or by blocking specific buzzwords (e.g. "Corona"). Beside these possibilities you can also hide "Creators on the rise" and trend categories (e.g. "Music" or "Gaming"). For more information visit the website: https://lars.koelker.dev/extensions/yt-trends-v2/ "YouTube" and the "YouTube" logo are registered trademarks of Google, Inc. This extension is not endorsed or affiliated with Google, Inc. or YouTube in any way. Some icons provided by feathericons.com.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trends v2 for YouTube™ |
ID | fcnnfgfhgdfcmpmpjpmpehnplfdlmila |
URL Chính Thức | https://chromewebstore.google.com/detail/trends-v2-for-youtube/fcnnfgfhgdfcmpmpjpmpehnplfdlmila |
Mô tả | Filter the trends how you like 'em. |
Kích Thước Tệp | 48.48 KB |
Số Lần Cài Đặt | 196 |
Phiên Bản Hiện Tại | 1.0 beta |
Cập Nhật Lần Cuối | 2023-11-06 |
Ngày Phát Hành | 2020-05-05 |
Đánh Giá | 3.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://lars.koelker.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://lars.koelker.dev/extensions/yt-trends-v2/ |
URL Trang Trợ Giúp | https://lars.koelker.dev/extensions/yt-trends-v2/ |
URL Trang Chính Sách Bảo Mật | https://lars.koelker.dev/privacy |
Ngôn Ngữ Được Hỗ Trợ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.0", "version_name": "1.0 beta", "description": "__MSG_extDesc__", "default_locale": "en", "homepage_url": "https:\/\/lars.koelker.dev\/extensions\/yt-trends-v2\/", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage", "unlimitedStorage", "activeTab", "notifications", "contextMenus" ], "optional_permissions": [ "https:\/\/lars.koelker.dev\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/trendsBtn.js", "js\/selectChannel.js" ], "css": [ "css\/content.min.css" ] }, { "matches": [ "https:\/\/www.youtube.com\/feed\/trending*" ], "js": [ "js\/trends.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" } }, "icons": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "manifest_version": 2, "web_accessible_resources": [ "manifest.json" ] } |