Roll20 Character Parser - 40k Dark Heresy

Roll20 Character Parser - 40k Dark Heresy

This little accessory will extract key information away from character sheets on online apps! Built for Dark Heresy 2nd Edition

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Roll20 Character Parser - 40k Dark Heresy",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.2.0.min.js",
        "getPageSource.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ]
}