Spotify adblocker
Listen to your favorite music without any ads with spotify adblocker
Spotify adblocker là gì?
Spotify adblocker là một tiện ích mở rộng Chrome được phát triển bởi Prime Extensions, và tính năng chính của nó là "Listen to your favorite music without any ads with spotify adblocker".
Ả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 Spotify adblocker
Tải xuống các tệp mở rộng Spotify adblocker 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
Enhance your Spotify experience with Spotify AdBlocker ! 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spotify adblocker |
ID | jjkmjkmaaaplnncabkhoeonloebnmjgd |
URL Chính Thức | https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd |
Mô tả | Listen to your favorite music without any ads with spotify adblocker |
Kích Thước Tệp | 123 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-09-28 |
Ngày Phát Hành | 2023-09-28 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Prime Extensions |
[email protected] | |
Trang Web Mở Rộng | https://www.spotifyadblocker.co/ |
URL Trang Trợ Giúp | https://www.spotifyadblocker.co/support |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify adblocker", "description": "Listen to your favorite music without any ads with spotify adblocker", "version": "1.0.0", "manifest_version": 3, "icons": { "16": "spotify16x16.png", "48": "spotify48x48.png", "128": "spotify128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "spotify adblocker", "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\/*" ] } ] } |