DnD Beyond Game Log
Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.
DnD Beyond Game Logคืออะไร?
DnD Beyond Game Log เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alexander.saurber และคุณลักษณะหลักของมันคือ "Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DnD Beyond Game Log
ดาวน์โหลดไฟล์ส่วนขยาย DnD Beyond Game Log ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension modifies the DnD Beyond campaign page when you click the "Game Log" button. Upon loading the page, it adds an event listener to wait for the Game Log button to be clicked. Once clicked, it removes all content from the page except the Game Log messages, and styles them to a dark mode with more subtle colors for all of the colored dice roll effects.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DnD Beyond Game Log |
ID | dckkobfhocjadfiinhkklfkljepejahf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dnd-beyond-game-log/dckkobfhocjadfiinhkklfkljepejahf |
คำอธิบาย | Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page. |
ขนาดไฟล์ | 17.71 KB |
จำนวนการติดตั้ง | 173 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-07-11 |
วันที่เผยแพร่ | 2023-07-10 |
ผู้พัฒนา | alexander.saurber |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "DnD Beyond Game Log", "version": "1.0.0", "description": "Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.dndbeyond.com\/campaigns\/*" ], "css": [ "scripts\/style.css" ] } ] } |