Youtube Ad Muter
Mutes ads while still supporting your favourite YouTubers
什么是Youtube Ad Muter?
Youtube Ad Muter是由nopynospy开发的Chrome扩展程序,该扩展的主要功能是“Mutes ads while still supporting your favourite YouTubers”。
扩展截图
下载Youtube Ad Muter扩展crx文件
下载Youtube Ad Muter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.
扩展基本信息
名称 | Youtube Ad Muter |
ID | kpaapfjgeapgppbkcgnogpdadofkeobc |
官方URL | https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc |
简介 | Mutes ads while still supporting your favourite YouTubers |
文件大小 | 88.41 KB |
安装次数 | 489 |
当前版本 | 1.0.0 |
更新时间 | 2023-06-18 |
上架时间 | 2023-06-18 |
评分 | 4.50/5 共4次评分 |
开发者 | nopynospy |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/nopynospy/youtube_ad_muter |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Ad Muter", "description": "Mutes ads while still supporting your favourite YouTubers", "version": "1.0.0", "manifest_version": 3, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_title": "Youtube Ad Muter", "default_icon": "icon.png" }, "permissions": [], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ] } ] } |