RollShare

Share your D&D dice rolls online

Что такое RollShare?

RollShare - это расширение Chrome, разработанное Jonathan Berling, и его основная функция - "Share your D&D dice rolls online".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения RollShare

Скачайте файлы расширений 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 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"
    }
}