Ranorex Automation

Ranorex Automation

Ranorex automation support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ranorex Automation",
  "version": "1.3.1",
  "manifest_version": 2,
  "description": "Ranorex automation support.",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "icons": {
    "16": "icon.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "background",
    "nativeMessaging",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "js": [
        "rxpath.min.js",
        "msgport.js",
        "nodemap.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}