Spotimute
This extension mutes the spotify & gaana audio when ad comes.
什麼是Spotimute?
Spotimute是由piedcipher.dev開發的Chrome擴展程式,該擴展的主要功能是“This extension mutes the spotify & gaana audio when ad comes.”。
擴展截圖
下載Spotimute擴展crx文件
下載Spotimute擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
擴展基本資訊
名稱 | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
官方網址 | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
簡介 | This extension mutes the spotify & gaana audio when ad comes. |
檔案大小 | 19.98 KB |
安裝次數 | 91 |
目前版本 | 0.0.2 |
更新時間 | 2022-07-27 |
上架時間 | 2022-07-21 |
評分 | 5.00/5 共 3 次評分 |
開發者 | piedcipher.dev |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://twitter.com/piedcipher |
說明頁面URL | https://github.com/piedcipher/spotimute/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotimute", "version": "0.0.2", "description": "This extension mutes the spotify & gaana audio when ad comes.", "manifest_version": 3, "author": "Tirth Patel", "action": { "default_popup": "index.html", "default_title": "Spotimute" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spotify.js" ] }, { "matches": [ "https:\/\/gaana.com\/*" ], "js": [ "gaana.js" ] } ], "icons": { "16": ".\/assets\/_16.png", "48": ".\/assets\/_48.png", "128": ".\/assets\/_128.png" } } |