UXTesting

UXTesting

Conduct face-to-face, remote moderated or remote unmoderated tests to uncover users' insights.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UXTesting",
  "version": "2.0.25",
  "description": "Conduct face-to-face, remote moderated or remote unmoderated tests to uncover users' insights.",
  "permissions": [
    "storage",
    "desktopCapture",
    "activeTab",
    "tabs",
    "gcm",
    "system.display",
    "http://localhost:3001/*",
    "https://app.uxtesting.io/*",
    "https://app-beta.uxtesting.io/*",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3001/*",
      "https://localhost:3001/*",
      "https://app.uxtesting.io/*",
      "https://app-beta.uxtesting.io/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "index.html"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/[email protected]",
      "32": "images/[email protected]",
      "48": "images/[email protected]",
      "128": "images/[email protected]",
      "256": "images/[email protected]"
    },
    "default_title": "UXTesting",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]",
    "256": "images/[email protected]"
  },
  "default_locale": "en",
  "manifest_version": 2
}