ugpdfs
Generate PDFs from Ultimate Guitar tabs
什么是ugpdfs?
ugpdfs是由ugpdfs开发的Chrome扩展程序,该扩展的主要功能是“Generate PDFs from Ultimate Guitar tabs”。
扩展截图
下载ugpdfs扩展crx文件
下载ugpdfs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Try ugpdfs, a Chrome extension that generates clean, printable PDF files from guitar tabs on https://www.ultimate-guitar.com/. It even works after transposing the key. 1. Navigate to the tab you want to play. 2. Click the PDF button in the extension. 3. Open the generated PDF file.
扩展基本信息
名称 | ugpdfs |
ID | mijneekdgfcfdledaobadahlmiejkiaf |
官方URL | https://chromewebstore.google.com/detail/ugpdfs/mijneekdgfcfdledaobadahlmiejkiaf |
简介 | Generate PDFs from Ultimate Guitar tabs |
文件大小 | 387 KB |
安装次数 | 472 |
当前版本 | 1.0.1 |
更新时间 | 2023-11-11 |
上架时间 | 2022-05-20 |
开发者 | ugpdfs |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://ugpdfs.github.io/ |
隐私政策页面URL | https://ugpdfs.github.io/privacy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ugpdfs", "description": "Generate PDFs from Ultimate Guitar tabs", "version": "1.0.1", "manifest_version": 3, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/*.ultimate-guitar.com\/*;" }, "content_scripts": [ { "matches": [ "http:\/\/*.ultimate-guitar.com\/*", "https:\/\/*.ultimate-guitar.com\/*", "https:\/\/web.archive.org\/*" ], "js": [ "content.js", "html2pdf-0.10.1.js" ] } ], "host_permissions": [ "https:\/\/ugpdfs.github.io\/" ], "permissions": [ "activeTab", "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |