YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
什么是YouTube Ad Blocker?
YouTube Ad Blocker是由hiatamaworkshop开发的Chrome扩展程序,该扩展的主要功能是“Automatically blocks advertisement of YouTube Videos”。
扩展截图
下载YouTube Ad Blocker扩展crx文件
下载YouTube Ad Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension functions as "Auto Clicker", it will click on 【Close / Skip Buttons】of the YouTube videos. It will work for some time, just a silly small function.
扩展基本信息
名称 | YouTube Ad Blocker |
ID | lnnfiihdkikdognbnlbnfajpeccdohka |
官方URL | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
简介 | Automatically blocks advertisement of YouTube Videos |
文件大小 | 62.03 KB |
安装次数 | 37 |
当前版本 | 0.1.1 |
更新时间 | 2021-02-18 |
上架时间 | 2021-02-17 |
开发者 | hiatamaworkshop |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://hiatamaworkshop.com/main.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Ad Blocker", "version": "0.1.1", "manifest_version": 2, "description": "Automatically blocks advertisement of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "youtube_adBlock.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "content.js", "inject.js" ], "permissions": [ "storage" ] } |