POM Builder – Auto-generate CSS/XPath Locator

POM Builder – Auto-generate CSS/XPath Locator

Instantly auto-generate the most robust locator including Xpath, CSS selector and more for use with Selenium or Protractor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "POM Builder – Auto-generate CSS/XPath Locator",
  "short_name": "POM Builder",
  "version": "1.1.7",
  "manifest_version": 2,
  "description": "Instantly auto-generate the most robust locator including Xpath, CSS selector and more for use with Selenium or Protractor.",
  "icons": {
    "16": "images/POMBuilder16.png",
    "48": "images/POMBuilder48.png",
    "128": "images/POMBuilder128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/POMBuilder16.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "POM Builder"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "webNavigation"
  ],
  "background": {
    "page": "background/background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/script.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; img-src *; object-src 'self'",
  "devtools_page": "devtools/devtools.html"
}