Spotify Web Visualizer
Full screen visualizer for Spotify Web
什么是Spotify Web Visualizer?
Spotify Web Visualizer是由http://nikodraca.com开发的Chrome扩展程序,该扩展的主要功能是“Full screen visualizer for Spotify Web”。
扩展截图
下载Spotify Web Visualizer扩展crx文件
下载Spotify Web Visualizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to enter a full screen visualizer while listening to Spotify on the web. Perfect for displaying artwork while listening to music on the web. Change Log: v0.2.1 (2020/04/01) - Fixed MutationObserver bug - Implemented pre-loading for images - Fixed audio control
扩展基本信息
名称 | |
ID | cioamabllelecbeliakinadcmlilkigp |
官方URL | https://chrome.google.com/webstore/detail/spotify-web-visualizer/cioamabllelecbeliakinadcmlilkigp |
简介 | Full screen visualizer for Spotify Web |
文件大小 | 120 KB |
安装次数 | 3,000 |
当前版本 | 0.2.1 |
更新时间 | 2020-05-22 |
上架时间 | 2020-05-22 |
评分 | 2.28/5 共18次评分 |
开发者 | http://nikodraca.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.nikodraca.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Web Visualizer", "version": "0.2.1", "manifest_version": 2, "description": "Full screen visualizer for Spotify Web", "homepage_url": "http:\/\/www.nikodraca.com\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/open.spotify.com\/*", "debugger" ], "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "src\/inject\/inject.js", "js\/jquery\/jquery.min.js" ] } ] } |