Katalon TrueTest

Katalon TrueTest

This extension captures all user interactions on the website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Katalon TrueTest",
  "short_name": "katalon-truetest",
  "author": "Katalon, Inc",
  "description": "This extension captures all user interactions on the website.",
  "version": "0.0.1",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "128": "favicon.png"
  },
  "action": {
    "default_icon": {
      "24": "favicon.png"
    },
    "default_title": "Katalon TrueTest",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "script/content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script/injector.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}