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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Spotify Web Visualizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Spotify Web Visualizer Spotify Web Visualizer
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"
            ]
        }
    ]
}