SnapTest

SnapTest

Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of 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": "SnapTest",
  "description": "Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of frameworks. ",
  "version": "2.8.2",
  "icons": {
    "128": "assets/icons/icon_128_v2.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "offline_enabled": true,
  "devtools_page": "devtool-background.html",
  "browser_action": {
    "default_icon": "assets/icons/icon_256_v1.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "cookies",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "injected.js",
    "assets/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "tab.css"
      ],
      "js": [
        "tab.js"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "eval.html"
    ]
  }
}