Spotify Open In App

Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application

什么是Spotify Open In App?

Spotify Open In App是由kampfkeksgeschwader11开发的Chrome扩展程序,该扩展的主要功能是“Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application”。

下载Spotify Open In App扩展crx文件

下载Spotify Open In App扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        You are sick of Spotify links opening in the web player? We have the solution!                    

扩展基本信息

名称 Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
官方URL https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
简介 Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
文件大小 8.44 KB
安装次数 2,000
当前版本 0.21
更新时间 2018-07-30
上架时间 2018-07-30
评分 4.63/5 共8次评分
开发者 kampfkeksgeschwader11
电子邮箱 [email protected]
付费类型 free
扩展官网 https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Open In App",
    "version": "0.21",
    "description": "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application",
    "manifest_version": 2,
    "icons": {
        "16": "SpotifyOpenInApp16.png",
        "48": "SpotifyOpenInApp48.png",
        "128": "SpotifyOpenInApp128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}