AdMute
Mutes ads on YouTube
AdMuteとは何ですか?
AdMuteはdev.jerrywuによって開発されたChromeの拡張機能で、その主な機能は「Mutes ads on YouTube」です。
拡張機能のスクリーンショット
AdMute拡張機能のCRXファイルをダウンロード
AdMute拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension automatically mutes the tab when an ads starts playing on YouTube. If you're tired of loud, annoying ads, but still want to support YouTube creators, installing this will help alleviate your auditory trauma!
拡張機能の基本情報
名前 | AdMute |
ID | lphpiojcgblffagolamjknonieggkela |
公式URL | https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela |
説明 | Mutes ads on YouTube |
ファイルサイズ | 16.3 KB |
インストール数 | 90 |
現在のバージョン | 0.0.2 |
最終更新日 | 2023-02-18 |
公開日 | 2023-02-11 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | dev.jerrywu |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AdMute", "description": "Mutes ads on YouTube", "version": "0.0.2", "author": "Jerry Wu", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/arrive.min.js", "youtube.js" ], "all_frames": true, "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "action": [], "icons": { "16": "icons\/enabled\/icon16.png", "48": "icons\/enabled\/icon48.png", "128": "icons\/enabled\/icon128.png" }, "permissions": [ "tabs", "webNavigation", "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ] } |