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 |
官方網址 | 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" ] } |