ugpdfs
Generate PDFs from Ultimate Guitar tabs
Co to jest ugpdfs?
ugpdfs to rozszerzenie Chrome opracowane przez ugpdfs, a jego główną funkcją jest „Generate PDFs from Ultimate Guitar tabs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ugpdfs
Pobierz pliki rozszerzeń ugpdfs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ugpdfs |
ID | mijneekdgfcfdledaobadahlmiejkiaf |
Oficjalny URL | https://chromewebstore.google.com/detail/ugpdfs/mijneekdgfcfdledaobadahlmiejkiaf |
Opis | Generate PDFs from Ultimate Guitar tabs |
Rozmiar pliku | 387 KB |
Liczba instalacji | 472 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2023-11-11 |
Data Publikacji | 2022-05-20 |
Deweloper | ugpdfs |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://ugpdfs.github.io/ |
Adres URL Strony Polityki Prywatności | https://ugpdfs.github.io/privacy.html |
Obsługiwane Języki | 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" } } |