Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Wat is Spotimute?
Spotimute is een Chrome-extensie ontwikkeld door piedcipher.dev, en de belangrijkste functie is "This extension mutes the spotify & gaana audio when ad comes.".
Extensie Screenshots
Download het CRX-bestand van de extensie Spotimute
Download Spotimute-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished. Basisinformatie over de Extensie
| Naam | |
| ID | mlkdhplkfffpgfkioemkjagaccinclgc |
| Officiële URL | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
| Beschrijving | This extension mutes the spotify & gaana audio when ad comes. |
| Bestandsgrootte | 19.98 KB |
| Aantal Installaties | 91 |
| Huidige Versie | 0.0.2 |
| Laatst Bijgewerkt | 2022-07-27 |
| Publicatiedatum | 2022-07-21 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | piedcipher.dev |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://twitter.com/piedcipher |
| Help Pagina-URL | https://github.com/piedcipher/spotimute/issues |
| Ondersteunde Talen | 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"
}
} | |