Automated Website Testing File Generator

Automated Website Testing File Generator

Page Object Builder for Automated Test Suites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Automated Website Testing File Generator",
  "description": "Page Object Builder for Automated Test Suites.",
  "version": "1.3.1",
  "icons": {
    "48": "water-icon48.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "middleware.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "downloads"
  ]
}