UserTesting Recorder Extension

UserTesting Recorder Extension

Extension for UserTesting Recorder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extTitle__",
  "description": "__MSG_extSummary__",
  "default_locale": "en",
  "version": "1.1.40",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "management"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.usertesting.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/active/UT_16x16.png",
    "32": "assets/images/active/UT_32x32.png",
    "48": "assets/images/active/UT_48x48.png",
    "96": "assets/images/active/UT_96x96.png",
    "128": "assets/images/active/UT_128x128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+U",
        "mac": "Command+Shift+U",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+U"
      }
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9e42cfcb-43f7-43f3-8bda-ec5c1fd5a7c2}"
    }
  }
}