Spotify Ad Blocker

Spotify Ad Blocker

Apa itu Spotify Ad Blocker?

Spotify Ad Blocker adalah ekstensi Chrome yang dikembangkan oleh Spotify Adblocker, dan fitur utamanya adalah "Spotify Ad Blocker".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Spotify Ad Blocker

Unduh file ekstensi Spotify Ad Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
URL Resmi https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
Deskripsi Spotify Ad Blocker
Ukuran File 366 KB
Jumlah Instalasi 25
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-06-04
Tanggal Publikasi 2023-06-04
Pengembang Spotify Adblocker
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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:\/\/*\/*"
            ]
        }
    ]
}