Eye Web Element V3.0

Eye Web Element V3.0

This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Eye Web Element V3.0",
  "description": "This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.",
  "version": "3.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "name": "Click to change the icon's color",
    "default_icon": "icon-on.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "listener.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "http://*/*",
    "http://localhost:8000/*",
    "http://localhost:8000/"
  ]
}