Botz Automation

Botz Automation

Extension for botz capture and recorder services

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Botz Automation",
  "description": "Extension for botz capture and recorder services",
  "version": "0.0.3.7",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:4200/*",
      "https://botzautomation.rapidbotz.com/*",
      "https://botzautomationstaging.rapidbotz.com/*"
    ]
  },
  "host_permissions": [
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:4200/*",
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "contentScripts/css/loader.css",
        "contentScripts/css/fieldCapture.css"
      ],
      "js": [
        "contentScripts/locator.js",
        "contentScripts/loader.js",
        "contentScripts/tools.js",
        "contentScripts/capture.js",
        "contentScripts/highlight.js",
        "contentScripts/webAddonCapture/webObjectUtil.js",
        "contentScripts/webAddonCapture/fieldCapture.js",
        "contentScripts/locatorCapture/locatorCapture.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScripts/contents/angle-down-solid.svg",
        "contentScripts/contents/angle-up-solid.svg",
        "contentScripts/contents/mouse-pointer-move.svg",
        "contentScripts/contents/stop.svg",
        "contentScripts/contents/sync-alt-solid.svg"
      ],
      "matches": [
        "http://localhost:4200/*",
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}