Goblin Secretary

Goblin Secretary

If you love playing Dungeons and Dragons and you use an online character sheet from this website:…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Goblin Secretary",
  "version": "1.0.2",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "file:///*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "inject.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Test Extension",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://charactersheet.co.uk/pathfinder/*"
  ],
  "web_accessible_resources": [
    "inject.js"
  ]
}