SauceLabs Low Code Test Recorder

SauceLabs Low Code Test Recorder

Selenium Test Generator for creating low-code tests in the SauceLabs Low Code Test Recorder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SauceLabs Low Code Test Recorder",
  "description": "Selenium Test Generator for creating low-code tests in the SauceLabs Low Code Test Recorder.",
  "manifest_version": 3,
  "homepage_url": "https://saucelabs.com/products/low-code-testing",
  "version": "3.0.60",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "action": {
    "default_icon": "icons-48.png",
    "default_title": "SauceLabs Low Code"
  },
  "icons": {
    "48": "icons-48.png",
    "96": "icons-96.png",
    "128": "icons-128.png"
  },
  "background": {
    "service_worker": "extension/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content-script/contentScript.css"
      ],
      "all_frames": true,
      "js": [
        "content-script/contentScript.js"
      ],
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-script/recorder.js",
        "content-script/xpath.js",
        "content-script/web-page.js",
        "content-script/shadowDom.js"
      ],
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/logo.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}