SpotiAds
Removes audio ads on Spotify™ Web Player
SpotiAds là gì?
SpotiAds là một tiện ích mở rộng Chrome được phát triển bởi Tomer, và tính năng chính của nó là "Removes audio ads on Spotify™ Web Player".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SpotiAds
Tải xuống các tệp mở rộng SpotiAds dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SpotiAds |
ID | mghhlojofjipigjobacbjdngmjafdeim |
URL Chính Thức | https://chromewebstore.google.com/detail/spotiads/mghhlojofjipigjobacbjdngmjafdeim |
Mô tả | Removes audio ads on Spotify™ Web Player |
Kích Thước Tệp | 112 KB |
Số Lần Cài Đặt | 175,753 |
Phiên Bản Hiện Tại | 1.1.4 |
Cập Nhật Lần Cuối | 2024-03-01 |
Ngày Phát Hành | 2020-11-15 |
Đánh Giá | 4.21/5 Tổng số 467 Đánh Giá |
Nhà Phát Triển | Tomer |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |