RollShare
Share your D&D dice rolls online
Was ist RollShare?
RollShare ist eine Chrome-Erweiterung, die von Jonathan Berling entwickelt wurde, und ihr Hauptmerkmal ist "Share your D&D dice rolls online".
Erweiterungsscreenshots
RollShare-Erweiterungs-CRX-Datei herunterladen
Laden Sie RollShare-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | RollShare |
ID | amendmkcdpkapnbilciacnpdmaonnlmh |
Offizielle URL | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
Beschreibung | Share your D&D dice rolls online |
Dateigröße | 15.08 KB |
Installationsanzahl | 54 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-07-08 |
Veröffentlichungsdatum | 2020-07-08 |
Entwickler | Jonathan Berling |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jonberling/RollShare |
Unterstützte Sprachen | 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" } } |