Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Youtube Title Blacklist là gì?
Youtube Title Blacklist là một tiện ích mở rộng Chrome được phát triển bởi http://creativebuilds.io, và tính năng chính của nó là "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".
Ả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 Title Blacklist
Tải xuống các tệp mở rộng Youtube Title 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
A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
Mô tả | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
Kích Thước Tệp | 296 KB |
Số Lần Cài Đặt | 423 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2020-12-12 |
Ngày Phát Hành | 2020-12-09 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | http://creativebuilds.io |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Title Blacklist", "version": "1.0.2", "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.", "icons": { "16": "assets\/icons\/icon16.png", "24": "assets\/icons\/icon24.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png", "default_popup": "popup\/index.html", "default_title": "Youtube Title Blacklist - Settings" }, "content_scripts": [ { "js": [ "content\/index.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "assets\/icons\/*.png" ], "permissions": [ "activeTab", "storage" ] } |