Asayer - Test Recorder

Asayer - Test Recorder

Asayer Chrome Plugin for Recording Tests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Asayer - Test Recorder",
  "version": "0.9.0",
  "description": "Asayer Chrome Plugin for Recording Tests.",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "tabs"
  ],
  "background": {
    "scripts": [
      "Storage.js",
      "PanelView.js",
      "Auth.js",
      "StepCreator.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "Storage.js",
        "StepCreator.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "popup.html"
  ],
  "browser_action": {
    "default_popup": "",
    "default_icon": {
      "16": "images/logo_16.png",
      "32": "images/logo_32.png",
      "64": "images/logo_64.png",
      "128": "images/logo_128.png"
    }
  },
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "minimum_chrome_version": "60",
  "manifest_version": 2
}