UTAM

UTAM

Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UTAM",
  "version": "1.0.2",
  "description": "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.",
  "author": "Salesforce",
  "devtools_page": "devtools/devtools.html",
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "icons": {
    "512": "img/browser-plugin.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "common/DataTypes.js",
        "common/ErrorCodes.js",
        "common/Messages.js",
        "common/Settings.js",
        "content/content_main.js",
        "content/ElementFinder.js",
        "content/Highlighter.js",
        "content/MemberNodeDescriptor.js",
        "content/PageObjectDatabase.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "storage",
    "tabs"
  ]
}