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 |
Eメール | [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" ] } |