Open Spotify Desktop App

Automatically opens the Desktop Spotify app for open.spotify.com links.

O que é Open Spotify Desktop App?

Open Spotify Desktop App é uma extensão do Chrome desenvolvida por thom801, e sua principal característica é "Automatically opens the Desktop Spotify app for open.spotify.com links.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Open Spotify Desktop App

Baixe arquivos de extensão Open Spotify Desktop App 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

                        When you click a link to open Spotify on your computer you are normally taken to the website and then have to take a few more steps to open the app. This extension will open the song, album, or playlist in the native app for you instantly.                    

Informações Básicas da Extensão

Nome Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
URL Oficial https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Descrição Automatically opens the Desktop Spotify app for open.spotify.com links.
Tamanho do Arquivo 8.13 KB
Contagem de Instalações 4,824
Versão Atual 1.0
Última Atualização 2021-01-12
Data de Publicação 2021-01-12
Classificação 4.64/5 Total de 11 Avaliações
Desenvolvedor thom801
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Spotify Desktop App",
    "version": "1.0",
    "description": "Automatically opens the Desktop Spotify app for open.spotify.com links.",
    "author": "Thom Allen - Twitter @thom801",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "https:\/\/open.spotify.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "open-spotify.js"
            ]
        }
    ]
}