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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |