Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Vad är Spotimute?
Spotimute är en Chrome-tillägg utvecklad av piedcipher.dev, och dess huvudfunktion är "This extension mutes the spotify & gaana audio when ad comes.".
Tilläggsskärmbilder
Ladda ner Spotimute-förlängningens CRX-fil
Ladda ner Spotimute-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished. Grundläggande Information om Tillägg
| Namn | |
| ID | mlkdhplkfffpgfkioemkjagaccinclgc |
| Officiell webbadress | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
| Beskrivning | This extension mutes the spotify & gaana audio when ad comes. |
| Filstorlek | 19.98 KB |
| Antal Installationer | 91 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2022-07-27 |
| Publiceringsdatum | 2022-07-21 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | piedcipher.dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://twitter.com/piedcipher |
| Hjälpsida URL | https://github.com/piedcipher/spotimute/issues |
| Stödda Språk | 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"
}
} | |