Spotify Open In App

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

Cos'è Spotify Open In App?

Spotify Open In App è un'estensione di Chrome sviluppata da kampfkeksgeschwader11, e la sua funzione principale è "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application".

Scarica il file CRX dell'estensione Spotify Open In App

Scarica i file di estensione Spotify Open In App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
URL Ufficiale https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Descrizione Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Dimensione del File 8.44 KB
Conteggio Installazioni 2,000
Versione Corrente 0.21
Ultimo Aggiornamento 2018-07-30
Data di Pubblicazione 2018-07-30
Valutazione 4.63/5 Totale 8 Valutazioni
Sviluppatore kampfkeksgeschwader11
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Lingue Supportate 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
    }
}