BeyondPrinting

Print your books on D&DBeyond

BeyondPrinting là gì?

BeyondPrinting là một tiện ích mở rộng Chrome được phát triển bởi silas, và tính năng chính của nó là "Print your books on D&DBeyond".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BeyondPrinting

Tải xuống các tệp mở rộng BeyondPrinting dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BeyondPrinting BeyondPrinting
ID ehkonmfjpkoanmhgangojnalpgopcnhd
URL Chính Thức https://chromewebstore.google.com/detail/beyondprinting/ehkonmfjpkoanmhgangojnalpgopcnhd
Mô tả Print your books on D&DBeyond
Kích Thước Tệp 1.75 MB
Số Lần Cài Đặt 1,401
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2023-08-24
Ngày Phát Hành 2023-01-23
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển silas
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}