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