Open Spotify Desktop App

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

Was ist Open Spotify Desktop App?

Open Spotify Desktop App ist eine Chrome-Erweiterung, die von thom801 entwickelt wurde, und ihr Hauptmerkmal ist "Automatically opens the Desktop Spotify app for open.spotify.com links.".

Erweiterungsscreenshots

screenshot

Open Spotify Desktop App-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open Spotify Desktop App-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
Offizielle URL https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Beschreibung Automatically opens the Desktop Spotify app for open.spotify.com links.
Dateigröße 8.13 KB
Installationsanzahl 4,824
Aktuelle Version 1.0
Letztes Update 2021-01-12
Veröffentlichungsdatum 2021-01-12
Bewertung 4.64/5 Insgesamt 11 Bewertungen
Entwickler thom801
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}