UG Companion

Tab finder based on your current Spotify track.

Qu'est-ce que UG Companion ?

UG Companion est une extension Chrome développée par https://madya121.com, et sa fonction principale est "Tab finder based on your current Spotify track.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension UG Companion

Téléchargez les fichiers d'extension UG Companion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom UG Companion UG Companion
ID ldkmmmfpblieacifbnbjigfaccgfliej
URL Officiel https://chromewebstore.google.com/detail/ug-companion/ldkmmmfpblieacifbnbjigfaccgfliej
Description Tab finder based on your current Spotify track.
Taille du Fichier 270 KB
Nombre d'Installations 172
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-09-22
Date de Publication 2020-09-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://madya121.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/madya121/ug-spotify-connector
URL de la Page d'Aide https://github.com/madya121/ug-spotify-connector
Langues Prises en Charge 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\/*"
    ]
}