Roll20: Click & Roll
A Click & Roll tool for D&D5e players on Roll20.net
Roll20: Click & Rollとは何ですか?
Roll20: Click & RollはPHP it | Martijn Wieringaによって開発されたChromeの拡張機能で、その主な機能は「A Click & Roll tool for D&D5e players on Roll20.net」です。
拡張機能のスクリーンショット
Roll20: Click & Roll拡張機能のCRXファイルをダウンロード
Roll20: Click & Roll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension provides Roll20 Players with a simple push-a-button system to roll the proper dice for their character! You have easy access to roll for ability checks, ability saves, skill checks, attack rolls, damage rolls, spells, and other custom rolls. You can also import a DNDBeyond character with a single click. More features will be added in future releases
拡張機能の基本情報
名前 | Roll20: Click & Roll |
ID | mohhillnhaheggkkjjmblipbehejpoba |
公式URL | https://chromewebstore.google.com/detail/roll20-click-roll/mohhillnhaheggkkjjmblipbehejpoba |
説明 | A Click & Roll tool for D&D5e players on Roll20.net |
ファイルサイズ | 102 KB |
インストール数 | 9,561 |
現在のバージョン | 0.3.1 |
最終更新日 | 2020-06-05 |
公開日 | 2020-06-04 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | PHP it | Martijn Wieringa |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.php-it.nl/tools/click-and-roll/ |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roll20: Click & Roll", "version": "0.3.1", "manifest_version": 2, "description": "A Click & Roll tool for D&D5e players on Roll20.net", "icons": { "128": "roll20-icon.png" }, "page_action": { "default_icon": "roll20-icon.png", "default_popup": "popup.html", "default_title": "Roll20: Click & Roll" }, "background": { "scripts": [ "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/app.roll20.net\/*", "https:\/\/www.roll20.net\/*" ], "js": [ "utils.js", "jquery-3.5.0.min.js", "roll20.js", "configuration.js" ], "css": [ "roll20.css", "configuration.css" ] }, { "matches": [ "https:\/\/www.dndbeyond.com\/*" ], "js": [ "utils.js", "jquery-3.5.0.min.js", "dndbeyond.js", "configuration.js" ], "css": [ "dndbeyond.css", "configuration.css" ] } ], "permissions": [ "storage", "tabs", "https:\/\/app.roll20.net\/", "https:\/\/www.roll20.net\/", "https:\/\/www.dndbeyond.com\/" ] } |