Spotify URL Parser

Converts Spotify URLs into URIs and opens them in the Spotify app.

Spotify URL Parser란 무엇입니까?

Spotify URL Parser은(는) Travis Straub에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts Spotify URLs into URIs and opens them in the Spotify app."입니다.

확장 프로그램 스크린샷

screenshot

Spotify URL Parser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you click on a Spotify link wherever it may be, it brings you to the Spotify website, and from there you have to click 4-5 separate times to get the link to open in the desktop app. This extension converts the Spotify URL to the Spotify URI and opens in Spotify automatically. The first time you run the extension, it will ask you where you want to open it, if you select "Spotify" and tell it not to ask you again, Spotify will open automatically when a link is clicked.                    

확장 프로그램 기본 정보

이름 Spotify URL Parser Spotify URL Parser
ID ifanbdlamoiiaklibabmofmckkjgfmon
공식 URL https://chromewebstore.google.com/detail/spotify-url-parser/ifanbdlamoiiaklibabmofmckkjgfmon
설명 Converts Spotify URLs into URIs and opens them in the Spotify app.
파일 크기 10.6 KB
설치 횟수 43
현재 버전 1.0
최근 업데이트 2020-02-02
출시 날짜 2020-02-01
평점 5.00/5 총 1 개의 평점
개발자 Travis Straub
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tstraub.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotify URL Parser",
    "version": "1.0",
    "description": "Converts Spotify URLs into URIs and opens them in the Spotify app.",
    "icons": {
        "48": "icons\/sup48.png",
        "96": "icons\/sup96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.spotify.com\/*"
            ],
            "js": [
                "SpotifyURLParser.js"
            ]
        }
    ]
}