Nexial WebEZ

Nexial WebEZ

Kick your web automation into high gear with Nexial WebEZ!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "inspection/background.js"
  },
  "minimum_chrome_version": "92",
  "action": {
    "default_icon": {
      "64": "resources/img/nexial-64.png"
    },
    "default_popup": "NexialWebEZ.html",
    "default_title": "Nexial WebEZ - Kick Your Web Automation into High Gear!"
  },
  "content_scripts": [
    {
      "js": [
        "env.js",
        "resources/scripts/console.js",
        "view/general.js",
        "view/showLocator.js",
        "inspection/contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Kick your web automation into high gear with Nexial WebEZ!",
  "icons": {
    "16": "resources/img/nexial-16.png",
    "32": "resources/img/nexial-32.png",
    "64": "resources/img/nexial-64.png",
    "128": "resources/img/nexial-128.png"
  },
  "manifest_version": 3,
  "name": "Nexial WebEZ",
  "version": "1.1.0",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/style/nexial.css",
        "env.js",
        "resources/scripts/console.js",
        "inspection/contextMenu.js",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}