RollShare
Share your D&D dice rolls online
Cos'è RollShare?
RollShare è un'estensione di Chrome sviluppata da Jonathan Berling, e la sua funzione principale è "Share your D&D dice rolls online".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RollShare
Scarica i file di estensione RollShare in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | amendmkcdpkapnbilciacnpdmaonnlmh |
| URL Ufficiale | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
| Descrizione | Share your D&D dice rolls online |
| Dimensione del File | 15.08 KB |
| Conteggio Installazioni | 54 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2020-07-08 |
| Data di Pubblicazione | 2020-07-08 |
| Sviluppatore | Jonathan Berling |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/jonberling/RollShare |
| Lingue Supportate | 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"
}
} | |