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
电子邮箱 [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\/*"
    ]
}