Owlbear Rodeo Tracker

Add-on for Owlbear Rodeo tabletop map simulator. Track dice rolls, combat turns, health and conditions of characters on the map.

Owlbear Rodeo Trackerคืออะไร?

Owlbear Rodeo Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Redweller และคุณลักษณะหลักของมันคือ "Add-on for Owlbear Rodeo tabletop map simulator. Track dice rolls, combat turns, health and conditions of characters on the map."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Owlbear Rodeo Tracker

ดาวน์โหลดไฟล์ส่วนขยาย Owlbear Rodeo Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Simple browser extension, adding combat tracker for Owlbear Rodeo tabletop map simulator. It lets you track dice rolls, combat turns, health and conditions of characters on the map.

This extension adds following functions to the Owlbear Rodeo:

- Combat tracker, that lets you track rounds and turns of the characters on the map.
- Dice tracker, that lets you track who rolled what and when it happened.
- Extension button allows toggling modules on/off and keeps track of your games.

OBR Tracker works only with Owlbear Rodeo (https://owlbear.rodeo) and depends on its updates. The latest OBR version that was tested with the extension is specified in the extension menu.

Note: OBR Tracker is developed independently, and is not officially endorsed by or affiliated with Owlbear Rodeo.

Combat tracker

Adds small collapsible overlay window to keep track of whose turn it is, and other optional minor stuff like HP, damage and conditions. It takes named tokens from the map and allows assigning them INIT values as well as other data. Then you can switch turns, it will count combat rounds for you. Conditions will automatically drop after set amount of rounds.

Combat tracker should be managed by one player (usually GM) and other OBRT users on the same map can just see the info. They won't see the exact HP values, just general condition & damage done. To initialize combat tracker data sharing, GM needs to create a Note with "!" (exclamation mark) somewhere outside the map.

Dice tracker

Adds dice log to keep track of player's dice rolls, with information on what exactly happened and when. It takes the dice values from left panel and puts them to a new small log overlay in the bottom-right corner of the screen. Unlike the native dice panel, it shows individual dice rolls with the timestamp, so no more wondering what dice were cast if the player has multiple dice in his tray.

It also optionally adds dice roll sounds when a dice is cast by user or other players. It also prevents abusing dice rerolls, and makes dice tray collapse on click.

Extension button

Each feature can be enabled or disabled via extension button. To apply settings you need to reload the page. Extension menu also keeps track of the recent games, and lets you quickly open a recent game or just switch to the Owlbear Rodeo tab if it's already open somewhere.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Owlbear Rodeo Tracker Owlbear Rodeo Tracker
ID lcfcmebjoechmikocfjjeocnljconfdp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/owlbear-rodeo-tracker/lcfcmebjoechmikocfjjeocnljconfdp
คำอธิบาย Add-on for Owlbear Rodeo tabletop map simulator. Track dice rolls, combat turns, health and conditions of characters on the map.
ขนาดไฟล์ 189 KB
จำนวนการติดตั้ง 2,025
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2022-01-31
วันที่เผยแพร่ 2021-10-16
คะแนน 4.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Redweller
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/redweller/obr_tracker
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.3.0",
    "author": "Redweller ([email protected])",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "\/images\/combat16.png",
        "32": "\/images\/combat32.png",
        "48": "\/images\/combat48.png",
        "128": "\/images\/combat128.png"
    },
    "action": {
        "default_popup": "\/action\/popup.html",
        "default_icon": {
            "16": "\/images\/combat16.png",
            "32": "\/images\/combat32.png",
            "48": "\/images\/combat48.png",
            "128": "\/images\/combat128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "\/action\/contentscript.js"
            ],
            "matches": [
                "https:\/\/*.owlbear.rodeo\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/injected\/*.js",
                "\/injected\/*.css",
                "\/action\/help.html",
                "\/audio\/*.mp3"
            ],
            "matches": [
                "https:\/\/*.owlbear.rodeo\/*"
            ]
        }
    ]
}