Spotifree
Removes audio ads on Spot1fy Web Player
什麼是Spotifree?
Spotifree是由robertward2933開發的Chrome擴展程式,該擴展的主要功能是“Removes audio ads on Spot1fy Web Player”。
擴展截圖
下載Spotifree擴展crx文件
下載Spotifree擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Via spotifree, you can have a completely ad-free version of spotify. It is completely open source and free. Features: -No need to pay for a premium account as ads are skipped without you taking action -You will not feel anything while listening to your music, the music will not be interrupted. -The time you spend listening to ads is up to you. -You save internet traffic because you don't listen to ads.
擴展基本資訊
名稱 | |
ID | lghglbigngooahpkaomlbiflhoahgnff |
官方網址 | https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff |
簡介 | Removes audio ads on Spot1fy Web Player |
檔案大小 | 49.97 KB |
安裝次數 | 544 |
目前版本 | 1.0.1 |
更新時間 | 2021-06-07 |
上架時間 | 2021-06-07 |
評分 | 5.00/5 共 6 次評分 |
開發者 | robertward2933 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotifree", "short_name": "Spotifree ads blocker", "description": "Removes audio ads on Spot1fy Web Player", "version": "1.0.1", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon_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\/*" ] } |