Open Spotify Desktop App

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

什麼是Open Spotify Desktop App?

Open Spotify Desktop App是由thom801開發的Chrome擴展程式,該擴展的主要功能是“Automatically opens the Desktop Spotify app for open.spotify.com links.”。

擴展截圖

screenshot

下載Open Spotify Desktop App擴展crx文件

下載Open Spotify Desktop App擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Open Spotify Desktop App Open Spotify Desktop App
ID ccilmbdijoknlfpepncnebjkiclplhig
官方網址 https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig
簡介 Automatically opens the Desktop Spotify app for open.spotify.com links.
檔案大小 8.13 KB
安裝次數 4,824
目前版本 1.0
更新時間 2021-01-12
上架時間 2021-01-12
評分 4.64/5 共 11 次評分
開發者 thom801
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}