Ghost Inspector - Web Test Recorder

Ghost Inspector - Web Test Recorder

Ghost Inspector is an automated browser testing service. Our add-on allows you to record yourself performing actions on your website within your browser, then sync them to the Ghost Inspector service and run them continuously as a regression test.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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": "6.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/toolbar-default-16.png",
      "32": "images/toolbar-default-32.png"
    },
    "default_title": "Ghost Inspector",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "css": [
        "content.css",
        "toastr.css"
      ],
      "js": [
        "vendor.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "<all_urls>"
  ]
}