Spotify Ad Blocker

Spotify Ad Blocker

Wat is Spotify Ad Blocker?

Spotify Ad Blocker is een Chrome-extensie ontwikkeld door Spotify Adblocker, en de belangrijkste functie is "Spotify Ad Blocker".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Spotify Ad Blocker

Download Spotify Ad Blocker-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

                        Install spotify adblocker chrome extension and block all annoying ads. Enjoy ads free music experience.                    

Basisinformatie over de Extensie

Naam Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
Officiële URL https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
Beschrijving Spotify Ad Blocker
Bestandsgrootte 366 KB
Aantal Installaties 25
Huidige Versie 1.0
Laatst Bijgewerkt 2023-06-04
Publicatiedatum 2023-06-04
Ontwikkelaar Spotify Adblocker
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spotify Ad Blocker",
    "version": "1.0",
    "description": "Spotify Ad Blocker",
    "icons": {
        "16": "SpotiIcon16.png",
        "32": "SpotiIcon32.png",
        "64": "SpotiIcon64.png",
        "128": "SpotiIcon128.png"
    },
    "action": {
        "default_title": "Spotify Ad Blocker",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_1.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest",
        "tabs",
        "storage",
        "notifications",
        "gcm"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scriptSpotify.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}