Spotify Ad Blocker

Spotify Ad Blocker

什麼是Spotify Ad Blocker?

Spotify Ad Blocker是由Spotify Adblocker開發的Chrome擴展程式,該擴展的主要功能是“Spotify Ad Blocker”。

擴展截圖

screenshot

下載Spotify Ad Blocker擴展crx文件

下載Spotify Ad Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
官方網址 https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
簡介 Spotify Ad Blocker
檔案大小 366 KB
安裝次數 25
目前版本 1.0
更新時間 2023-06-04
上架時間 2023-06-04
開發者 Spotify Adblocker
電子郵箱 [email protected]
付費類型 free
支援的語言 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:\/\/*\/*"
            ]
        }
    ]
}