Spotilize

A companion Chrome Extension to the Spotilize web app.

O que é Spotilize?

Spotilize é uma extensão do Chrome desenvolvida por https://christophergomez.dev, e sua principal característica é "A companion Chrome Extension to the Spotilize web app.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Spotilize

Baixe arquivos de extensão Spotilize no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Spotilize Spotilize
ID jidcihllhnmbjbnoijfepopdpkpgeobe
URL Oficial https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe
Descrição A companion Chrome Extension to the Spotilize web app.
Tamanho do Arquivo 24.78 KB
Contagem de Instalações 23
Versão Atual 1.1.0
Última Atualização 2023-04-01
Data de Publicação 2019-01-25
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor https://christophergomez.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://spotilize.uc.r.appspot.com/
Idiomas Suportados 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
}