Spotilize
A companion Chrome Extension to the Spotilize web app.
什么是Spotilize?
Spotilize是由https://christophergomez.dev开发的Chrome扩展程序,该扩展的主要功能是“A companion Chrome Extension to the Spotilize web app.”。
扩展截图
下载Spotilize扩展crx文件
下载Spotilize扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension activates the Spotilize web app, an app built for visualizing your Spotify library. With beautiful visuals and full screen support, run this extension on a large monitor or computer hooked up to a television to really set the mood. Dance along or just listen and stare, Spotilize is here to enhance your Spotify experience. 扩展基本信息
| 名称 | |
| ID | jidcihllhnmbjbnoijfepopdpkpgeobe |
| 官方URL | https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe |
| 简介 | A companion Chrome Extension to the Spotilize web app. |
| 文件大小 | 24.78 KB |
| 安装次数 | 23 |
| 当前版本 | 1.1.0 |
| 更新时间 | 2023-04-01 |
| 上架时间 | 2019-01-25 |
| 评分 | 3.00/5 共1次评分 |
| 开发者 | https://christophergomez.dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://spotilize.uc.r.appspot.com/ |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotilize",
"version": "1.1.0",
"description": "A companion Chrome Extension to the Spotilize web app.",
"permissions": [
"activeTab",
"tabCapture",
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/localhost:8080\/*",
"https:\/\/spotilize.uc.r.appspot.com\/*"
],
"js": [
"inject.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"default_title": "Spotilize",
"default_popup": ""
},
"externally_connectable": {
"matches": [
"http:\/\/localhost:8080\/*",
"https:\/\/spotilize.uc.r.appspot.com\/*"
]
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"minimum_chrome_version": "71",
"manifest_version": 2
} | |