RollShare
Share your D&D dice rolls online
RollShare란 무엇입니까?
RollShare은(는) Jonathan Berling에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share your D&D dice rolls online"입니다.
확장 프로그램 스크린샷
RollShare 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | RollShare |
ID | amendmkcdpkapnbilciacnpdmaonnlmh |
공식 URL | https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh |
설명 | Share your D&D dice rolls online |
파일 크기 | 15.08 KB |
설치 횟수 | 54 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-07-08 |
출시 날짜 | 2020-07-08 |
개발자 | Jonathan Berling |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jonberling/RollShare |
지원되는 언어 | 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" } } |