Spotify Web Visualizer
Full screen visualizer for Spotify Web
What is Spotify Web Visualizer?
Spotify Web Visualizer is a Chrome extension developed by http://nikodraca.com, and its main feature is "Full screen visualizer for Spotify Web".
Extension Screenshots
Download Spotify Web Visualizer Extension CRX File
Download Spotify Web Visualizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | cioamabllelecbeliakinadcmlilkigp |
Official URL | https://chrome.google.com/webstore/detail/spotify-web-visualizer/cioamabllelecbeliakinadcmlilkigp |
Description | Full screen visualizer for Spotify Web |
File Size | 120 KB |
Installation Count | 3,000 |
Current Version | 0.2.1 |
Last Updated | 2020-05-22 |
Publish Date | 2020-05-22 |
Rating | 2.28/5 Total 18 Ratings |
Developer | http://nikodraca.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.nikodraca.com |
Supported Languages | 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" ] } ] } |