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 |
官方URL | 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" ] } ] } |