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
官方URL 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"
            ]
        }
    ]
}