BeyondPrinting
Print your books on D&DBeyond
BeyondPrinting란 무엇입니까?
BeyondPrinting은(는) silas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Print your books on D&DBeyond"입니다.
확장 프로그램 스크린샷
BeyondPrinting 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |