Youtube adblocker
watch ads free videos on youtube
什么是Youtube adblocker?
Youtube adblocker是由youtbadblocker开发的Chrome扩展程序,该扩展的主要功能是“watch ads free videos on youtube”。
扩展截图
下载Youtube adblocker扩展crx文件
下载Youtube adblocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Youtube adblocker is a Chrome extension designed to enhance your browsing experience by blocking intrusive ads on youtube and annoying pop-ups. With its user-friendly interface, it offers efficient ad and popup blocking, allowing you to enjoy a cleaner, faster, and more secure online environment. Say goodbye to distractions, protect your privacy, and browse the web with ease. Install Youtube adblocker today and take control of your online experience.
扩展基本信息
名称 | Youtube adblocker |
ID | nihjoknbdeopkanoegafjcbbeaidemke |
官方URL | https://chromewebstore.google.com/detail/youtube-adblocker/nihjoknbdeopkanoegafjcbbeaidemke |
简介 | watch ads free videos on youtube |
文件大小 | 136 KB |
安装次数 | 440 |
当前版本 | 1.2.0 |
更新时间 | 2024-01-15 |
上架时间 | 2023-09-24 |
评分 | 5.00/5 共23次评分 |
开发者 | youtbadblocker |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.youtubeadblocker.net/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube adblocker", "description": "watch ads free videos on youtube", "version": "1.2.0", "manifest_version": 3, "icons": { "16": "YoutubeAdBlocker16x16.png", "48": "YoutubeAdBlocker48x48.png", "128": "YoutubeAdBlocker128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "YoutubeAdBlocker", "default_icon": "YoutubeAdBlocker16x16.png" }, "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "permissions": [ "storage", "declarativeNetRequest" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ] } ] } |