Keyword Blocker
Web Extension to block unwanted videos and channels
什么是Keyword Blocker?
Keyword Blocker是由Rik Harink开发的Chrome扩展程序,该扩展的主要功能是“Web Extension to block unwanted videos and channels”。
扩展截图
下载Keyword Blocker扩展crx文件
下载Keyword Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension can block YouTube videos or channels from view based on keywords you can specify. It features a very basic password protection and the block message is user-customizable. Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension. The sourcecode is available on github at https://github.com/Meidor/keywordblocker
扩展基本信息
名称 | |
ID | pbgacppomjfpheddhifkdkklddnolnpg |
官方URL | https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg |
简介 | Web Extension to block unwanted videos and channels |
文件大小 | 84.9 KB |
安装次数 | 9,000 |
当前版本 | 2.2.1 |
更新时间 | 2020-02-04 |
上架时间 | 2020-02-04 |
评分 | 3.25/5 共99次评分 |
开发者 | Rik Harink |
付费类型 | free |
扩展官网 | https://www.keywordblocker.nl |
帮助页面URL | https://github.com/Meidor/keywordblocker/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Web Extension to block unwanted videos and channels", "version": "2.2.1", "name": "Keyword Blocker", "manifest_version": 2, "icons": { "16": "img\/icon-16.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.bundle.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon-19.png", "38": "img\/icon-38.png" }, "default_title": "Keyword Blocker", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "styles\/content_script.css" ], "js": [ "content_script.bundle.js" ] } ], "permissions": [ "tabs", "storage", "contextMenus", "*:\/\/www.youtube.com\/*" ] } |