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
官方網址 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
    }
}