JDE-xpansion

JDE-xpansion

Useful tools from Fusion 5 for interacting with JDE's web interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JDE-xpansion",
  "short_name": "JDE-xpansion",
  "description": "Useful tools from Fusion 5 for interacting with JDE's web interface.",
  "version": "1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "background"
  ],
  "web_accessible_resources": [
    "jde_functions.js",
    "add_list.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/jde/E1Menu.maf?*",
        "https://*/jde/E1Menu.maf?*",
        "http://*/jde/E1Client.mafService?*",
        "https://*/jde/E1Client.mafService?*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}