Auto Ad Mute
This mutes youtube ad audio.
什么是Auto Ad Mute?
Auto Ad Mute是由jasoberai开发的Chrome扩展程序,该扩展的主要功能是“This mutes youtube ad audio.”。
扩展截图
下载Auto Ad Mute扩展crx文件
下载Auto Ad Mute扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Code is available here as open source: [https://github.com/jasmeeto/auto-ad-mute] An extension that automatically mutes tabs while ad audio from YouTube is playing for those who want to support their favorite content creators without the noise. Relatively intuitive, the addon is enabled by default. Features: - Mutes ads - Can skip ads that are skippable (i.e. ones that show the 'Skip Ad' button) (Disabled by default) - Hides ad banners that appear in middle of videos by just moving them off screen
扩展基本信息
名称 | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
官方URL | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
简介 | This mutes youtube ad audio. |
文件大小 | 39.86 KB |
安装次数 | 1,570 |
当前版本 | 1.8 |
更新时间 | 2017-10-29 |
上架时间 | 2017-10-29 |
评分 | 3.07/5 共45次评分 |
开发者 | jasoberai |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/jasmeeto/auto-ad-mute |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Ad Mute", "description": "This mutes youtube ad audio.", "version": "1.8", "icons": { "48": "icon_mute.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/jquery-3.1.0.min.js", "libs\/arrive.min.js", "contentScript.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Auto Mute Options" }, "background": { "scripts": [ "backgroundScript.js" ] }, "permissions": [ "tabs", "*:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |