Open Spotify Desktop App

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

¿Qué es Open Spotify Desktop App?

Open Spotify Desktop App es una extensión de Chrome desarrollada por thom801, y su función principal es "Automatically opens the Desktop Spotify app for open.spotify.com links.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Open Spotify Desktop App

Descarga archivos de extensión Open Spotify Desktop App en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
URL Oficial https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Descripción Automatically opens the Desktop Spotify app for open.spotify.com links.
Tamaño del Archivo 8.13 KB
Cantidad de Instalaciones 4,824
Versión Actual 1.0
Última Actualización 2021-01-12
Fecha de Publicación 2021-01-12
Calificación 4.64/5 Total de 11 Calificaciones
Desarrollador thom801
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}