Spotify Open In App

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

Co to jest Spotify Open In App?

Spotify Open In App to rozszerzenie Chrome opracowane przez kampfkeksgeschwader11, a jego główną funkcją jest „Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application”.

Pobierz plik CRX rozszerzenia Spotify Open In App

Pobierz pliki rozszerzeń Spotify Open In App w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
Oficjalny URL https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Opis Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Rozmiar pliku 8.44 KB
Liczba instalacji 2,000
Aktualna Wersja 0.21
Ostatnia Aktualizacja 2018-07-30
Data Publikacji 2018-07-30
Ocena 4.63/5 Łącznie 8 Oceny
Deweloper kampfkeksgeschwader11
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Obsługiwane Języki 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
    }
}