Infor-RPA Recorder & Inspector

Infor-RPA Recorder & Inspector

The Infor RPA Recorder & Inspector can be used to make your web automation easier!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Infor-RPA Recorder & Inspector",
  "version": "4.2",
  "manifest_version": 3,
  "description": "The Infor RPA Recorder & Inspector can be used to make your web automation easier!",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_title": "Infor-RPA Recorder & Inspector",
    "default_icon": "icons/icon.png",
    "permissions": [
      "tabs"
    ]
  },
  "sandbox": {
    "pages": [
      "panel2.html"
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/icon.png",
    "128": "icons/128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "tabs",
    "notifications",
    "activeTab",
    "webRequest",
    "storage",
    "webNavigation",
    "downloads",
    "system.display"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/md5.min.js",
        "js/pako.min.js",
        "js/tools.js",
        "js/custom-config.js",
        "js/locatorBuilders.js",
        "js/recorder.js",
        "js/indexed-db-utils.js",
        "js/vista.js",
        "js/siera.js"
      ],
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/topbar.js",
        "js/recorder-handlers.js",
        "web/js/vue.esm-browser.js"
      ],
      "match_about_blank": true
    },
    {
      "all_frames": true,
      "js": [
        "js/util.js",
        "js/content/atoms.js",
        "js/content/utils.js",
        "js/common/escape.js",
        "js/content/targetSelecter.js",
        "js/content/sizzle.js",
        "js/content/content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "js/common/browser-polyfill.js",
        "js/content/prompt-injecter.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/pathfinder/js/scripts/libs/jquery-json-2.6.js",
        "js/pathfinder/js/scripts/libs/infor-companyon-client.js"
      ],
      "matches": [
        "https://*.inforcloudsuite.com/*",
        "https://*.awsdev.infor.com/*",
        "https://*.aws.infor.com/*",
        "https://*.cloud.infor.com/infor"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "frame.html",
        "panel.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}