Spotless
Effortless Spotify
什麼是Spotless?
Spotless是由phandd開發的Chrome擴展程式,該擴展的主要功能是“Effortless Spotify”。
擴展截圖
下載Spotless擴展crx文件
下載Spotless擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Too annoyed by Spotify Ads? Too lazy to navigate to Spotify when you want to change your music? Spotless is here to help you use Spotify effortless! What makes Spotless different from other Spotify players out there is you can control your Spotify player no matter what device you are using, what tab you are currently on. Try it out and you will love it! For source code and issue reporting: https://github.com/phandd/spotless
擴展基本資訊
名稱 | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
官方網址 | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
簡介 | Effortless Spotify |
檔案大小 | 421 KB |
安裝次數 | 8,911 |
目前版本 | 1.3.1 |
更新時間 | 2020-03-16 |
上架時間 | 2020-03-15 |
評分 | 4.54/5 共 50 次評分 |
開發者 | phandd |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/phandd/spotless |
說明頁面URL | https://github.com/phandd/spotless |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotless", "description": "Effortless Spotify", "version": "1.3.1", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Spotless", "default_popup": "popup.html" }, "permissions": [ "https:\/\/open.spotify.com\/", "https:\/\/spotify.com\/" ], "icons": { "128": "icon-128.png", "16": "icon-16.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "run_at": "document_end", "js": [ "content-script.js" ] } ] } |