RollShare
Share your D&D dice rolls online
Co to jest RollShare?
RollShare to rozszerzenie Chrome opracowane przez Jonathan Berling, a jego główną funkcją jest „Share your D&D dice rolls online”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RollShare
Pobierz pliki rozszerzeń RollShare w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | RollShare |
ID | amendmkcdpkapnbilciacnpdmaonnlmh |
Oficjalny URL | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
Opis | Share your D&D dice rolls online |
Rozmiar pliku | 15.08 KB |
Liczba instalacji | 54 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-07-08 |
Data Publikacji | 2020-07-08 |
Deweloper | Jonathan Berling |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jonberling/RollShare |
Obsługiwane Języki | 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" } } |