UG Companion

Tab finder based on your current Spotify track.

UG Companion क्या है?

UG Companion https://madya121.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tab finder based on your current Spotify track."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UG Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}