Spotify Web Watcher

Watch over the Spotify Web Player and report the current song, artist and cover

O que é Spotify Web Watcher?

Spotify Web Watcher é uma extensão do Chrome desenvolvida por https://orestes.io, e sua principal característica é "Watch over the Spotify Web Player and report the current song, artist and cover".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Spotify Web Watcher

Baixe arquivos de extensão Spotify Web Watcher 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

                        Connects to a private URL where you can display what you are playing currently on the Spotify Web Player

- Open Spotify Web Player (https://open.spotify.com)
- Log-in into Spotify
- The extension icon will turn green
- Click on the extension icon
- Copy the URL
- Use it on your streaming software (OBS/SLOBS/XPlit) as a "browser" source                    

Informações Básicas da Extensão

Nome Spotify Web Watcher Spotify Web Watcher
ID bdmajojbomhndfchgmljkjihdpjhcefl
URL Oficial https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl
Descrição Watch over the Spotify Web Player and report the current song, artist and cover
Tamanho do Arquivo 1.95 MB
Contagem de Instalações 242
Versão Atual 1.1.0
Última Atualização 2022-07-08
Data de Publicação 2020-05-12
Desenvolvedor https://orestes.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/orestes/spotify-web-watcher
URL da Página de Ajuda https://github.com/orestes/spotify-web-watcher/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Watcher",
    "version": "1.1.0",
    "description": "Watch over the Spotify Web Player and report the current song, artist and cover",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.firebase.com https:\/\/www.googleapis.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16x16-green.png",
        "48": "icons\/48x48-green.png",
        "128": "icons\/128x128-green.png"
    },
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/48x48-white.png",
            "32": "icons\/48x48-white.png",
            "48": "icons\/48x48-white.png"
        },
        "default_title": "Spotify Web Watcher",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}