ugpiano
.
什么是ugpiano?
ugpiano是由import antigrvty开发的Chrome扩展程序,该扩展的主要功能是“.”。
扩展截图
下载ugpiano扩展crx文件
下载ugpiano扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Show piano chords in ultimate guitar! Ultimate-guitar is a great resource for chords to practically any song you could want to learn. They even show guitar chord diagrams for those who are not sure what the chord shape is. Unfortunately, they do not provide piano chord diagrams as well. That's where ugpiano can help. It will show the piano chord diagrams while it is activated! Thanks to https://www.scales-chords.com/ for making their API available. I am retrieving the piano chord diagrams through them!
扩展基本信息
名称 | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
官方URL | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
简介 | . |
文件大小 | 87.6 KB |
安装次数 | 440 |
当前版本 | 1.1 |
更新时间 | 2020-01-06 |
上架时间 | 2020-01-05 |
评分 | 5.00/5 共3次评分 |
开发者 | import antigrvty |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ugpiano", "description": ".", "version": "1.1", "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/*.ultimate-guitar.com\/*", "storage" ], "browser_action": { "default_title": "UGPiano" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "icons\/ugpiano16.png", "48": "icons\/ugpiano48.png", "128": "icons\/ugpiano128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.ultimate-guitar.com\/*" ], "js": [ "scripts\/showchords.js" ] } ] } |