BeyondPrinting
Print your books on D&DBeyond
O que é BeyondPrinting?
BeyondPrinting é uma extensão do Chrome desenvolvida por silas, e sua principal característica é "Print your books on D&DBeyond".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BeyondPrinting
Baixe arquivos de extensão BeyondPrinting no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Print your sourcebooks and adventures on D&D-Beyond. It enhances the normal printing process in the following ways: - only one PDF per book - better formatting - links from table of content to single chapters and vice versa for easy navigation Just click on the Print-Button in the Table of Content of the book you want to print. If a book does not print, ensure you really own the book. If you own the book, just leave a question via the chrome webstore and I will look into it. Credits where credits is due: I've created the plugin in my freetime after reading the idea on reddit from the user ctzaran and seeing his tampermonkey script.
Informações Básicas da Extensão
Nome | BeyondPrinting |
ID | ehkonmfjpkoanmhgangojnalpgopcnhd |
URL Oficial | https://chromewebstore.google.com/detail/beyondprinting/ehkonmfjpkoanmhgangojnalpgopcnhd |
Descrição | Print your books on D&DBeyond |
Tamanho do Arquivo | 1.75 MB |
Contagem de Instalações | 1,401 |
Versão Atual | 0.1.2 |
Última Atualização | 2023-08-24 |
Data de Publicação | 2023-01-23 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | silas |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.1.2", "short_name": "BeyondPrinting", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.dndbeyond.com\/sources\/*", "https:\/\/dndbeyond.com\/sources\/*" ], "js": [ "contentScript.bundle.js" ] }, { "matches": [ "https:\/\/www.dndbeyond.com\/sources", "https:\/\/dndbeyond.com\/sources" ], "js": [ "printAll.bundle.js" ] } ], "action": { "default_icon": "img\/dndSingle64.png" }, "permissions": [], "host_permissions": [ "https:\/\/*.dndbeyond.com\/", "https:\/\/dndbeyond.com\/" ], "icons": { "128": "img\/dndScreen128.png" } } |