Owlbear Rodeo Tracker

Owlbear Rodeo Tracker

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}