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