Spotimute
This extension mutes the spotify & gaana audio when ad comes.
What is Spotimute?
Spotimute is a Chrome extension developed by piedcipher.dev, and its main feature is "This extension mutes the spotify & gaana audio when ad comes.".
Extension Screenshots
Download Spotimute Extension CRX File
Download Spotimute extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
Extension Basic Information
Name | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
Official URL | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Description | This extension mutes the spotify & gaana audio when ad comes. |
File Size | 19.98 KB |
Installation Count | 91 |
Current Version | 0.0.2 |
Last Updated | 2022-07-27 |
Publish Date | 2022-07-21 |
Rating | 5.00/5 Total 3 Ratings |
Developer | piedcipher.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://twitter.com/piedcipher |
Help Page URL | https://github.com/piedcipher/spotimute/issues |
Supported Languages | 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" } } |