BeyondPrinting
Print your books on D&DBeyond
什麼是BeyondPrinting?
BeyondPrinting是由silas開發的Chrome擴展程式,該擴展的主要功能是“Print your books on D&DBeyond”。
擴展截圖
下載BeyondPrinting擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | ehkonmfjpkoanmhgangojnalpgopcnhd |
| 官方網址 | 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"
}
} | |