Test Recorder

Test Recorder

The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Test Recorder",
  "description": " The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.",
  "version": "0.4.3",
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "test-recorder.js"
      ]
    }
  ]
}