D&D Beyond Custom Currency

D&D Beyond Custom Currency

A plugin for customising how currency appears on your character sheet on D&D Beyond.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "D&D Beyond Custom Currency",
  "version": "1.1",
  "description": "A plugin for customising how currency appears on your character sheet on D&D Beyond.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "downloads"
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.dndbeyond.com/profile/*/characters/*",
        "https://www.dndbeyond.com/characters/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "management/character/characterForm.html?type=popup",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "64": "images/icon64.png"
    }
  },
  "options_page": "management/options.html",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}