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

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

확장 프로그램 사용 설명서

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