Beyond Discord

Beyond Discord

An extension that sends dice roll results from D&D-Beyond to Discord using webhooks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Beyond Discord",
  "version": "1.2.1",
  "description": "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks",
  "author": "Olian04",
  "permissions": [
    "storage",
    "https://discord.com/api/webhooks/*"
  ],
  "icons": {
    "128": "./icons/128.png",
    "512": "./icons/512.png"
  },
  "action": {
    "default_icon": {
      "128": "./icons/128.png",
      "512": "./icons/512.png"
    },
    "default_title": "Configure BeyondDiscord",
    "default_popup": "./popup.html"
  },
  "options_ui": {
    "page": "./options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.dndbeyond.com/characters/*"
      ],
      "js": [
        "./js/content.js"
      ]
    }
  ]
}