Spotify Ad Blocker

Spotify Ad Blocker

Was ist Spotify Ad Blocker?

Spotify Ad Blocker ist eine Chrome-Erweiterung, die von Spotify Adblocker entwickelt wurde, und ihr Hauptmerkmal ist "Spotify Ad Blocker".

Erweiterungsscreenshots

screenshot

Spotify Ad Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spotify Ad Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
Offizielle URL https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
Beschreibung Spotify Ad Blocker
Dateigröße 366 KB
Installationsanzahl 25
Aktuelle Version 1.0
Letztes Update 2023-06-04
Veröffentlichungsdatum 2023-06-04
Entwickler Spotify Adblocker
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}