Headsup

Headsup

The Headsup extension lets you record, play, and automate functional tests for web applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Headsup",
  "homepage_url": "https://headsup.app",
  "description": "The Headsup extension lets you record, play, and automate functional tests for web applications.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "<all_urls>",
    "debugger",
    "storage",
    "tabs",
    "webNavigation"
  ],
  "devtools_page": "devtools.html",
  "browser_action": {
    "default_title": "Open Headsup in a window"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "persistent": false,
    "scripts": [
      "browser-polyfill.js",
      "background-bundle.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://localhost:*/*",
      "https://*.headsup.app/*"
    ]
  },
  "manifest_version": 2,
  "version": "0.10.2"
}