RollShare
Share your D&D dice rolls online
O que é RollShare?
RollShare é uma extensão do Chrome desenvolvida por Jonathan Berling, e sua principal característica é "Share your D&D dice rolls online".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RollShare
Baixe arquivos de extensão RollShare no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | RollShare |
ID | amendmkcdpkapnbilciacnpdmaonnlmh |
URL Oficial | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
Descrição | Share your D&D dice rolls online |
Tamanho do Arquivo | 15.08 KB |
Contagem de Instalações | 54 |
Versão Atual | 1.0 |
Última Atualização | 2020-07-08 |
Data de Publicação | 2020-07-08 |
Desenvolvedor | Jonathan Berling |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jonberling/RollShare |
Idiomas Suportados | 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" } } |