UG Companion

Tab finder based on your current Spotify track.

UG Companion란 무엇입니까?

UG Companion은(는) https://madya121.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab finder based on your current Spotify track."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

UG Companion 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Find the Ultimate Guitar Tab / Chord based on your current track on Spotify with one click of a button.

After the plugin is installed.
1. Go to the Ultimate Guitar site, you can see the green Spotify icon at the lower right corner like in the picture.
2. Once you clicked it, you'll redirected to the Spotify log-in page
3. After you're done logging in, you'll see the icon changed into the UG-Spotify fusion icon. Then when you play any song on the Spotify, you can click the icon, and the tool will take you to the top search result of song (if it exists).

Note:
This only works best for the pro user, because It chooses the first tab on the search list so that it might be the official one.                    

확장 프로그램 기본 정보

이름 UG Companion UG Companion
ID ldkmmmfpblieacifbnbjigfaccgfliej
공식 URL https://chromewebstore.google.com/detail/ug-companion/ldkmmmfpblieacifbnbjigfaccgfliej
설명 Tab finder based on your current Spotify track.
파일 크기 270 KB
설치 횟수 172
현재 버전 1.0.0
최근 업데이트 2020-09-22
출시 날짜 2020-09-22
평점 5.00/5 총 1 개의 평점
개발자 https://madya121.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/madya121/ug-spotify-connector
도움말 페이지 URL https://github.com/madya121/ug-spotify-connector
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UG Companion",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Tab finder based on your current Spotify track.",
    "homepage_url": "https:\/\/github.com\/madya121\/ug-spotify-connector",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ultimate-guitar.com\/*"
            ],
            "js": [
                "src\/content_scripts\/jquery.js",
                "src\/content_scripts\/ug.js"
            ]
        }
    ],
    "options_page": "src\/options\/index.html",
    "permissions": [
        "storage",
        "https:\/\/*.ultimate-guitar.com\/*"
    ]
}