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ファイルをダウンロード

UG Companion拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
    ]
}