Spotify adblocker
Listen to your favorite music without any ads with spotify adblocker
Cos'è Spotify adblocker?
Spotify adblocker è un'estensione di Chrome sviluppata da Prime Extensions, e la sua funzione principale è "Listen to your favorite music without any ads with spotify adblocker".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spotify adblocker
Scarica i file di estensione Spotify adblocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Enhance your Spotify experience with Spotify AdBlocker ! This Chrome extension effortlessly blocks annoying audio, as well as pesky pop-ups, ensuring uninterrupted music streaming. No more interruptions—just pure, ad-free music bliss. Upgrade your Spotify journey today Informazioni di Base sull'Estensione
| Nome | |
| ID | jjkmjkmaaaplnncabkhoeonloebnmjgd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd |
| Descrizione | Listen to your favorite music without any ads with spotify adblocker |
| Dimensione del File | 123 KB |
| Conteggio Installazioni | 31 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2023-09-28 |
| Data di Pubblicazione | 2023-09-28 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Prime Extensions |
| [email protected] | |
| Sito Web dell'Estensione | https://www.spotifyadblocker.co/ |
| URL della Pagina di Aiuto | https://www.spotifyadblocker.co/support |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotify adblocker",
"description": "Listen to your favorite music without any ads with spotify adblocker",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "spotify16x16.png",
"48": "spotify48x48.png",
"128": "spotify128x128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "spotify adblocker",
"default_icon": "spotify16x16.png"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"declarativeNetRequest"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
]
},
{
"matches": [
"https:\/\/open.spotify.com\/*"
],
"js": [
"contentScriptSpotify.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"contentScriptSpotify.js",
"adsSweetalertSpotify.js",
"adsAdsRemoveSpotify.js",
"adswsHooksSpotify.js"
],
"matches": [
"https:\/\/open.spotify.com\/*"
]
}
]
} | |