Open Spotify Desktop App

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

Vad är Open Spotify Desktop App?

Open Spotify Desktop App är en Chrome-tillägg utvecklad av thom801, och dess huvudfunktion är "Automatically opens the Desktop Spotify app for open.spotify.com links.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Open Spotify Desktop 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

                        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.                    

Grundläggande Information om Tillägg

Namn Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
Officiell webbadress https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
Beskrivning Automatically opens the Desktop Spotify app for open.spotify.com links.
Filstorlek 8.13 KB
Antal Installationer 4,824
Aktuell Version 1.0
Senast Uppdaterad 2021-01-12
Publiceringsdatum 2021-01-12
Betyg 4.64/5 Totalt 11 Betyg
Utvecklare thom801
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}