YouTube Blacklist
Hide specific channels or videos from YouTube search results
YouTube Blacklist là gì?
YouTube Blacklist là một tiện ích mở rộng Chrome được phát triển bởi datakun, và tính năng chính của nó là "Hide specific channels or videos from YouTube search results".
Ả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 Blacklist
Tải xuống các tệp mở rộng YouTube Blacklist 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
Hide specific channels or videos from YouTube search results. In YouTube search results, you can hide a channel or video from the search results by clicking the menu icon to the right of the channel or video you don't want to see and then "Hide this channel" or "Hide this video" menu. Hidden channels or videos can be viewed and removed from the options page of the extension. Change Log: - 0.3.0 - Options page improvements. - 0.2.0 - Channels or videos registered on the blacklist are hidden from the YouTube main page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Blacklist |
ID | fgapocjejiiecmooibicahfjngjbgaak |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-blacklist/fgapocjejiiecmooibicahfjngjbgaak |
Mô tả | Hide specific channels or videos from YouTube search results |
Kích Thước Tệp | 293 KB |
Số Lần Cài Đặt | 222 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2022-01-17 |
Ngày Phát Hành | 2022-01-07 |
Nhà Phát Triển | datakun |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/datakun/YouTube-Blacklist/issues |
Ngôn Ngữ Được Hỗ Trợ | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blacklist", "description": "__MSG_description__", "version": "0.3.0", "manifest_version": 3, "background": { "service_worker": ".\/build\/background.js" }, "content_scripts": [ { "js": [ "build\/injection.js" ], "css": [ "build\/injection.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": ".\/popup.html", "default_icon": { "16": ".\/images\/ic_youtube_blacklist_16.png", "32": ".\/images\/ic_youtube_blacklist_32.png", "48": ".\/images\/ic_youtube_blacklist_48.png", "128": ".\/images\/ic_youtube_blacklist_128.png" } }, "icons": { "16": ".\/images\/ic_youtube_blacklist_16.png", "32": ".\/images\/ic_youtube_blacklist_32.png", "48": ".\/images\/ic_youtube_blacklist_48.png", "128": ".\/images\/ic_youtube_blacklist_128.png" }, "options_page": ".\/options.html", "default_locale": "en" } |