Roll20: Click & Roll

Roll20: Click & Roll

A Click & Roll tool for D&D5e players on Roll20.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roll20: Click & Roll",
  "version": "0.3.1",
  "manifest_version": 2,
  "description": "A Click & Roll tool for D&D5e players on Roll20.net",
  "icons": {
    "128": "roll20-icon.png"
  },
  "page_action": {
    "default_icon": "roll20-icon.png",
    "default_popup": "popup.html",
    "default_title": "Roll20: Click & Roll"
  },
  "background": {
    "scripts": [
      "events.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.roll20.net/*",
        "https://www.roll20.net/*"
      ],
      "js": [
        "utils.js",
        "jquery-3.5.0.min.js",
        "roll20.js",
        "configuration.js"
      ],
      "css": [
        "roll20.css",
        "configuration.css"
      ]
    },
    {
      "matches": [
        "https://www.dndbeyond.com/*"
      ],
      "js": [
        "utils.js",
        "jquery-3.5.0.min.js",
        "dndbeyond.js",
        "configuration.js"
      ],
      "css": [
        "dndbeyond.css",
        "configuration.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "https://app.roll20.net/",
    "https://www.roll20.net/",
    "https://www.dndbeyond.com/"
  ]
}