Spotilize

A companion Chrome Extension to the Spotilize web app.

Cos'è Spotilize?

Spotilize è un'estensione di Chrome sviluppata da https://christophergomez.dev, e la sua funzione principale è "A companion Chrome Extension to the Spotilize web app.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spotilize

Scarica i file di estensione Spotilize in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension activates the Spotilize web app, an app built for visualizing your Spotify library. With beautiful visuals and full screen support, run this extension on a large monitor or computer hooked up to a television to really set the mood. Dance along or just listen and stare, Spotilize is here to enhance your Spotify experience.                    

Informazioni di Base sull'Estensione

Nome Spotilize Spotilize
ID jidcihllhnmbjbnoijfepopdpkpgeobe
URL Ufficiale https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe
Descrizione A companion Chrome Extension to the Spotilize web app.
Dimensione del File 24.78 KB
Conteggio Installazioni 23
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-04-01
Data di Pubblicazione 2019-01-25
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore https://christophergomez.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://spotilize.uc.r.appspot.com/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotilize",
    "version": "1.1.0",
    "description": "A companion Chrome Extension to the Spotilize web app.",
    "permissions": [
        "activeTab",
        "tabCapture",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/*",
                "https:\/\/spotilize.uc.r.appspot.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Spotilize",
        "default_popup": ""
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:8080\/*",
            "https:\/\/spotilize.uc.r.appspot.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "minimum_chrome_version": "71",
    "manifest_version": 2
}