Spotify Ad Blocker

Spotify Ad Blocker

Spotify Ad Blockerคืออะไร?

Spotify Ad Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Spotify Adblocker และคุณลักษณะหลักของมันคือ "Spotify Ad Blocker"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Ad Blocker

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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:\/\/*\/*"
            ]
        }
    ]
}