Youtube Video Blocker
Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
什么是Youtube Video Blocker?
Youtube Video Blocker是由bmoses1124开发的Chrome扩展程序,该扩展的主要功能是“Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.”。
扩展截图
下载Youtube Video Blocker扩展crx文件
下载Youtube Video Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.
扩展基本信息
名称 | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
官方URL | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
简介 | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
文件大小 | 6.02 KB |
安装次数 | 555 |
当前版本 | 0.1 |
更新时间 | 2020-12-23 |
上架时间 | 2020-12-23 |
评分 | 1.00/5 共3次评分 |
开发者 | bmoses1124 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Blocker", "version": "0.1", "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "block_youtube_vids.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "manifest_version": 2 } |