Ghost Inspector - Web Test Recorder

Ghost Inspector - Web Test Recorder

Ghost Inspector extension for recording automated website tests in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ghost Inspector - Web Test Recorder",
  "short_name": "Ghost Inspector",
  "author": "Ghost Inspector",
  "description": "Ghost Inspector extension for recording automated website tests in your browser",
  "homepage_url": "https://ghostinspector.com",
  "version": "7.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/toolbar-default-16.png",
      "32": "images/toolbar-default-32.png"
    },
    "default_title": "Ghost Inspector",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "css": [
        "content.css",
        "toastr.css"
      ],
      "js": [
        "vendor.js",
        "content.js"
      ]
    }
  ],
  "minimum_chrome_version": "92",
  "permissions": [
    "storage",
    "tabs",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}