SpotiAds
Removes audio ads on Spotify™ Web Player
SpotiAdsคืออะไร?
SpotiAds เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tomer และคุณลักษณะหลักของมันคือ "Removes audio ads on Spotify™ Web Player"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SpotiAds
ดาวน์โหลดไฟล์ส่วนขยาย SpotiAds ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will block annoying audio ads from playing on Spotify™. Using it, ads will not play on Spotify™ online web player, and instead the next song will play. Note that this will not affect your smartphone, etc. Sources are available here: https://github.com/tomer8007/spotify-web-ads-remover ———————————————————— LEGAL ———————————————————— This extension is against Spotify's Terms of Service. Spotify is a trademark of Spotify Technology S.A., registered in the U.S. and other countries. This extension is an independent project developed by Tomer H. and has no relationship to Spotify or Spotify Technology S.A.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SpotiAds |
ID | mghhlojofjipigjobacbjdngmjafdeim |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spotiads/mghhlojofjipigjobacbjdngmjafdeim |
คำอธิบาย | Removes audio ads on Spotify™ Web Player |
ขนาดไฟล์ | 112 KB |
จำนวนการติดตั้ง | 175,753 |
เวอร์ชันปัจจุบัน | 1.1.4 |
อัปเดตครั้งล่าสุด | 2024-03-01 |
วันที่เผยแพร่ | 2020-11-15 |
คะแนน | 4.21/5 รวมทั้งหมด 467 คะแนน |
ผู้พัฒนา | Tomer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpotiAds", "short_name": "SpotiAdBlocker", "description": "Removes audio ads on Spotify\u2122 Web Player", "version": "1.1.4", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_2_128.png" }, "browser_action": { "default_icon": "images\/icon_2_128.png", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "lib\/sweetalert.min.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ "injected\/*", "lib\/*" ] } |