YouTube Blocker
Block unwanted YouTube channels.
什么是YouTube Blocker?
YouTube Blocker是由Przemysław Tyczyński开发的Chrome扩展程序,该扩展的主要功能是“Block unwanted YouTube channels.”。
扩展截图
下载YouTube Blocker扩展crx文件
下载YouTube Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. We know that the YouTube feed can be troublesome sometimes, to say the least. For that reason, we put forward a much needed solution to aforementioned problem. Hide unwanted content now.
扩展基本信息
名称 | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
官方URL | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
简介 | Block unwanted YouTube channels. |
文件大小 | 96.3 KB |
安装次数 | 1,036 |
当前版本 | 1.0.0 |
更新时间 | 2020-04-21 |
上架时间 | 2020-04-21 |
评分 | 5.00/5 共5次评分 |
开发者 | Przemysław Tyczyński |
付费类型 | free |
扩展官网 | https://youtube-blocker.tyczynski.dev |
帮助页面URL | https://youtube-blocker.tyczynski.dev |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Blocker", "description": "Block unwanted YouTube channels.", "version": "1.0.0", "browser_action": { "default_title": "YouTube Blocker", "default_popup": "popup.html", "default_icon": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" } }, "icons": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "storage" ] } |