UG Companion

Tab finder based on your current Spotify track.

ما هو UG Companion؟

UG Companion هو إضافة Chrome تم تطويرها بواسطة https://madya121.com، والميزة الرئيسية لها هي "Tab finder based on your current Spotify track.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة UG Companion

قم بتنزيل ملفات الامتداد UG Companion بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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\/*"
    ]
}