Spotify Open In App

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

Vad är Spotify Open In App?

Spotify Open In App är en Chrome-tillägg utvecklad av kampfkeksgeschwader11, och dess huvudfunktion är "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application".

Ladda ner Spotify Open In App-förlängningens CRX-fil

Ladda ner Spotify Open In App-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
Officiell webbadress https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Beskrivning Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Filstorlek 8.44 KB
Antal Installationer 2,000
Aktuell Version 0.21
Senast Uppdaterad 2018-07-30
Publiceringsdatum 2018-07-30
Betyg 4.63/5 Totalt 8 Betyg
Utvecklare kampfkeksgeschwader11
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Stödda Språk 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
    }
}