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.”。
擴展截圖
下載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 |
ID | ldkmmmfpblieacifbnbjigfaccgfliej |
官方網址 | 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\/*" ] } |