Resurrectio

Resurrectio

Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Resurrectio",
  "version": "0.5",
  "manifest_version": 2,
  "description": "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.",
  "icons": {
    "48": "makina-icon.png",
    "128": "makina-icon-128.png"
  },
  "browser_action": {
    "default_icon": "makina-icon.png",
    "default_popup": "control.html",
    "default_title": "CasperJS test recorder"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "background",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "recorder.js"
      ]
    }
  ],
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}