DnD Dice Roller

DnD Dice Roller

Calculates the hit and damage of any spell or attack action

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DnD Dice Roller",
  "description": "Calculates the hit and damage of any spell or attack action",
  "version": "1.09",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "images/D20_16x16.png",
    "32": "images/D20_32x32.png",
    "48": "images/D20_48x48.png",
    "128": "images/D20_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.dndbeyond.com/profile/*/characters/*",
        "http://*.dndbeyond.com/profile/*/characters/*"
      ],
      "js": [
        "scripts/lib/arrive.min.js",
        "scripts/entities/Attack.js",
        "scripts/factories/ModalFactory.js",
        "scripts/factories/SpellFactory.js",
        "scripts/factories/ClickEventFactory.js",
        "scripts/helpers/roll.js",
        "scripts/Index.js"
      ],
      "css": [
        "css/index.css"
      ]
    }
  ]
}