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" } } |