Alseta's Passage: A Pathbuilder Discord Bot

Creates a safe passageway for your rolls from pathbuilder to discord
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Alseta's Passage: A Pathbuilder Discord Bot",
  "version": "1.1.0",
  "description": "Creates a safe passageway for your rolls from pathbuilder to discord",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Discord Integration",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png",
      "512": "icons/icon512.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "512": "icons/icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pathbuilder2e.com/*",
        "https://pathbuilder2e.com/beta/*"
      ],
      "css": [
        "toast.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e7849c1d-9c1d-4592-a557-5b84d428224a}"
    }
  }
}