BeyondPrinting
Print your books on D&DBeyond
BeyondPrinting क्या है?
BeyondPrinting silas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Print your books on D&DBeyond"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BeyondPrinting एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |