Spotify Open In App

Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application

¿Qué es Spotify Open In App?

Spotify Open In App es una extensión de Chrome desarrollada por kampfkeksgeschwader11, y su función principal es "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application".

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

Descarga archivos de extensión Spotify Open In 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

                        You are sick of Spotify links opening in the web player? We have the solution!                    

Información Básica de la Extensión

Nombre Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
URL Oficial https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Descripción Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Tamaño del Archivo 8.44 KB
Cantidad de Instalaciones 2,000
Versión Actual 0.21
Última Actualización 2018-07-30
Fecha de Publicación 2018-07-30
Calificación 4.63/5 Total de 8 Calificaciones
Desarrollador kampfkeksgeschwader11
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Open In App",
    "version": "0.21",
    "description": "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application",
    "manifest_version": 2,
    "icons": {
        "16": "SpotifyOpenInApp16.png",
        "48": "SpotifyOpenInApp48.png",
        "128": "SpotifyOpenInApp128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}