BeyondPrinting

BeyondPrinting

Print your books on D&DBeyond

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.1.2",
  "short_name": "BeyondPrinting",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.dndbeyond.com/sources/*",
        "https://dndbeyond.com/sources/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://www.dndbeyond.com/sources",
        "https://dndbeyond.com/sources"
      ],
      "js": [
        "printAll.bundle.js"
      ]
    }
  ],
  "action": {
    "default_icon": "img/dndSingle64.png"
  },
  "permissions": [],
  "host_permissions": [
    "https://*.dndbeyond.com/",
    "https://dndbeyond.com/"
  ],
  "icons": {
    "128": "img/dndScreen128.png"
  }
}