RollShare
Share your D&D dice rolls online
什么是RollShare?
RollShare是由Jonathan Berling开发的Chrome扩展程序,该扩展的主要功能是“Share your D&D dice rolls online”。
扩展截图
下载RollShare扩展crx文件
下载RollShare扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |