Spotify Web Visualizer

Full screen visualizer for Spotify Web

Apa itu Spotify Web Visualizer?

Spotify Web Visualizer adalah ekstensi Chrome yang dikembangkan oleh http://nikodraca.com, dan fitur utamanya adalah "Full screen visualizer for Spotify Web".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Spotify Web Visualizer

Unduh file ekstensi Spotify Web Visualizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Spotify Web Visualizer Spotify Web Visualizer
ID cioamabllelecbeliakinadcmlilkigp
URL Resmi https://chrome.google.com/webstore/detail/spotify-web-visualizer/cioamabllelecbeliakinadcmlilkigp
Deskripsi Full screen visualizer for Spotify Web
Ukuran File 120 KB
Jumlah Instalasi 3,000
Versi Saat Ini 0.2.1
Terakhir Diperbarui 2020-05-22
Tanggal Publikasi 2020-05-22
Penilaian 2.28/5 Total 18 Penilaian
Pengembang http://nikodraca.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.nikodraca.com
Bahasa yang Didukung 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"
            ]
        }
    ]
}