Generate Test Case

Generate Test Case

Listens to mouse/keyboard events and write commands in plain language into new file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Generate Test Case",
  "version": "1.1",
  "description": "Listens to mouse/keyboard events and write commands in plain language into new file",
  "browser_action": {
    "default_popup": "default.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "modal.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "cover16.png",
    "48": "cover48.png",
    "128": "cover128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}