WinTask Browser Automation

WinTask Browser Automation

WinTask component browser automation. This extension is used by WinTask to automate browser actions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "WinTask Browser Automation",
  "version": "7.1.115",
  "description": "WinTask component browser automation. This extension is used by WinTask to automate browser actions.",
  "icons": {
    "16": "wintask_16.png",
    "48": "wintask_48.png",
    "128": "wintask_128.png",
    "256": "wintask_256.png"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "cookies",
    "webNavigation",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "BackgroundService.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "WTConst.js",
        "WTTrace.js",
        "WTDocList.js",
        "WTCustomId.js",
        "WTTools.js",
        "WTTagAttrs.js",
        "WTDescriptor.js",
        "WTRecorder.js"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}