Spotify ADBlock
Spotify ADBlock that blocks & removes audio ads from Spotify using Spotify ADBlock technology
Spotify ADBlockคืออะไร?
Spotify ADBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Teleparty Extension และคุณลักษณะหลักของมันคือ "Spotify ADBlock that blocks & removes audio ads from Spotify using Spotify ADBlock technology"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify ADBlock
ดาวน์โหลดไฟล์ส่วนขยาย Spotify ADBlock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enhance your Spotify experience with Spotify ADBlock ! This Chrome extension effortlessly blocks annoying audio, as well as pesky pop-ups, ensuring uninterrupted music streaming. No more interruptions—just pure, ad-free music bliss. Upgrade your Spotify journey today
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spotify ADBlock |
ID | emacagpeoclebandkdicenohemklcdjj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spotify-adblock/emacagpeoclebandkdicenohemklcdjj |
คำอธิบาย | Spotify ADBlock that blocks & removes audio ads from Spotify using Spotify ADBlock technology |
ขนาดไฟล์ | 171 KB |
จำนวนการติดตั้ง | 20 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2024-01-19 |
วันที่เผยแพร่ | 2024-01-19 |
ผู้พัฒนา | Teleparty Extension |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify ADBlock", "description": "Spotify ADBlock that blocks & removes audio ads from Spotify using Spotify ADBlock technology", "version": "1.2.0", "manifest_version": 3, "icons": { "16": "spotify16x16.png", "48": "spotify48x48.png", "128": "spotify128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "Spotify ADBlock", "default_icon": "spotify16x16.png" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "permissions": [ "declarativeNetRequest" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "contentScriptSpotify.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "contentScriptSpotify.js", "adsSweetalertSpotify.js", "adsAdsRemoveSpotify.js", "adswsHooksSpotify.js" ], "matches": [ "https:\/\/open.spotify.com\/*" ] } ] } |