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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}