RollShare
Share your D&D dice rolls online
Hvad er RollShare?
RollShare er en Chrome-udvidelse udviklet af Jonathan Berling, og dens hovedfunktion er "Share your D&D dice rolls online".
Udvidelsesskærmbilleder
Download RollShare-udvidelses-CRX-fil
Download RollShare-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | amendmkcdpkapnbilciacnpdmaonnlmh |
| Officiel URL | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
| Beskrivelse | Share your D&D dice rolls online |
| Filstørrelse | 15.08 KB |
| Antal Installationer | 54 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2020-07-08 |
| Udgivelsesdato | 2020-07-08 |
| Udvikler | Jonathan Berling |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/jonberling/RollShare |
| Understøttede Sprog | 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"
}
} | |