Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Hvad er Spotimute?
Spotimute er en Chrome-udvidelse udviklet af piedcipher.dev, og dens hovedfunktion er "This extension mutes the spotify & gaana audio when ad comes.".
Udvidelsesskærmbilleder
Download Spotimute-udvidelses-CRX-fil
Download Spotimute-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
Officiel URL | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Beskrivelse | This extension mutes the spotify & gaana audio when ad comes. |
Filstørrelse | 19.98 KB |
Antal Installationer | 91 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2022-07-27 |
Udgivelsesdato | 2022-07-21 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | piedcipher.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://twitter.com/piedcipher |
Hjælpeside-URL | https://github.com/piedcipher/spotimute/issues |
Understøttede Sprog | 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" } } |