RollShare
Share your D&D dice rolls online
What is RollShare?
RollShare is a Chrome extension developed by Jonathan Berling, and its main feature is "Share your D&D dice rolls online".
Extension Screenshots
Download RollShare Extension CRX File
Download RollShare extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | RollShare |
ID | amendmkcdpkapnbilciacnpdmaonnlmh |
Official URL | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
Description | Share your D&D dice rolls online |
File Size | 15.08 KB |
Installation Count | 54 |
Current Version | 1.0 |
Last Updated | 2020-07-08 |
Publish Date | 2020-07-08 |
Developer | Jonathan Berling |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jonberling/RollShare |
Supported Languages | 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" } } |