Open Spotify Desktop App

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

Co to jest Open Spotify Desktop App?

Open Spotify Desktop App to rozszerzenie Chrome opracowane przez thom801, a jego główną funkcją jest „Automatically opens the Desktop Spotify app for open.spotify.com links.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Open Spotify Desktop App

Pobierz pliki rozszerzeń Open Spotify Desktop 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
Oficjalny URL https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Opis Automatically opens the Desktop Spotify app for open.spotify.com links.
Rozmiar pliku 8.13 KB
Liczba instalacji 4,824
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-01-12
Data Publikacji 2021-01-12
Ocena 4.64/5 Łącznie 11 Oceny
Deweloper thom801
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}