Selenium Capture + Excel Generator

Selenium Capture + Excel Generator

This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Selenium Capture + Excel Generator",
  "description": "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel",
  "version": "1.1",
  "browser_action": {
    "default_icon": "Image/icon.png",
    "default_popup": "Popup/popup.html"
  },
  "icons": {
    "16": "Image/icon.png",
    "32": "Image/icon.png",
    "64": "Image/icon.png"
  },
  "background": {
    "scripts": [
      "Background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "Common/jquery.js",
        "Content/content.js"
      ],
      "css": [
        "Content/content.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "background",
    "downloads"
  ]
}