IBM RPA Web Recorder

IBM RPA Web Recorder

Create a RPA Automation script by recording browser actions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "IBM RPA Web Recorder",
  "version": "1.1.5",
  "description": "Create a RPA Automation script by recording browser actions",
  "icons": {
    "48": "icons/ico48.png"
  },
  "browser_action": {
    "default_icon": "icons/disconnected-icon.png",
    "default_title": "IBM RPA Automation (disconnected)"
  },
  "background": {
    "scripts": [
      "common.js",
      "background/chrome-timer.js",
      "background/server-connection.js",
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content/highlighter.css"
      ],
      "js": [
        "jquery-3.7.1.min.js",
        "jquery-extensions.js",
        "common.js",
        "content/timeout.js",
        "content/highlighter.js",
        "content/recorder.js",
        "content/duplicates.js",
        "content/content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "<all_urls>",
    "alarms",
    "tabs",
    "scripting",
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d876e9be-875a-40be-aeaa-df91db6470c2}"
    }
  }
}