BeyondPrinting
Print your books on D&DBeyond
Τι είναι το BeyondPrinting;
Το BeyondPrinting είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον silas, και η κύρια λειτουργία του είναι "Print your books on D&DBeyond".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης BeyondPrinting
Λήψη αρχείων επέκτασης BeyondPrinting σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | BeyondPrinting |
ID | ehkonmfjpkoanmhgangojnalpgopcnhd |
Επίσημο URL | https://chromewebstore.google.com/detail/beyondprinting/ehkonmfjpkoanmhgangojnalpgopcnhd |
Περιγραφή | Print your books on D&DBeyond |
Μέγεθος Αρχείου | 1.75 MB |
Αριθμός Εγκαταστάσεων | 1,401 |
Τρέχουσα Έκδοση | 0.1.2 |
Τελευταία Ενημέρωση | 2023-08-24 |
Ημερομηνία Δημοσίευσης | 2023-01-23 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | silas |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |