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. 拡張機能の基本情報
| 名前 | |
| ID | mlkdhplkfffpgfkioemkjagaccinclgc |
| 公式URL | 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 |
| Eメール | [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"
}
} | |