RollShare
Share your D&D dice rolls online
ما هو RollShare؟
RollShare هو إضافة Chrome تم تطويرها بواسطة Jonathan Berling، والميزة الرئيسية لها هي "Share your D&D dice rolls online".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RollShare
قم بتنزيل ملفات الامتداد RollShare بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automatically share any dice rolls on D&D Beyond with your Roll20 game.
This extension detects when you roll the dice on your D&D Beyond character sheet, and shares the roll on Roll20 using their roll template.
Using it is easy, just have both a D&D Beyond character sheet open, and a Roll20 game open. معلومات أساسية عن التمديد
| الاسم | |
| ID | amendmkcdpkapnbilciacnpdmaonnlmh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
| الوصف | Share your D&D dice rolls online |
| حجم الملف | 15.08 KB |
| عدد التثبيتات | 54 |
| النسخة الحالية | 1.0 |
| آخر تحديث | 2020-07-08 |
| تاريخ النشر | 2020-07-08 |
| المطور | Jonathan Berling |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/jonberling/RollShare |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RollShare",
"version": "1.0",
"description": "Share your D&D dice rolls online",
"manifest_version": 2,
"icons": {
"128": "icon\/RollShareIcon.png"
},
"permissions": [
"*:\/\/www.dndbeyond.com\/profile\/*\/characters\/*",
"*:\/\/app.roll20.net\/editor\/*"
],
"background": {
"persistent": false,
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.dndbeyond.com\/profile\/*\/characters\/*"
],
"run_at": "document_idle",
"js": [
"src\/ddb_roll_send.js"
]
},
{
"matches": [
"*:\/\/app.roll20.net\/editor\/*"
],
"run_at": "document_idle",
"js": [
"src\/r20_roll_receive.js"
]
}
],
"browser_action": {
"default_popup": "src\/popup.html",
"default_title": "RollShare"
}
} | |