Spotify adblocker
Listen to your favorite music without any ads with spotify adblocker
什麼是Spotify adblocker?
Spotify adblocker是由Prime Extensions開發的Chrome擴展程式,該擴展的主要功能是“Listen to your favorite music without any ads with spotify adblocker”。
擴展截圖
下載Spotify adblocker擴展crx文件
下載Spotify adblocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Spotify adblocker |
ID | jjkmjkmaaaplnncabkhoeonloebnmjgd |
官方網址 | https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd |
簡介 | Listen to your favorite music without any ads with spotify adblocker |
檔案大小 | 123 KB |
安裝次數 | 31 |
目前版本 | 1.0.0 |
更新時間 | 2023-09-28 |
上架時間 | 2023-09-28 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Prime Extensions |
電子郵箱 | [email protected] |
擴展官網 | https://www.spotifyadblocker.co/ |
說明頁面URL | https://www.spotifyadblocker.co/support |
支援的語言 | 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\/*" ] } ] } |