TruePath

TruePath

TruePath generates the relative XPath, script and analyzes code on click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TruePath",
  "description": "TruePath generates the relative XPath, script and analyzes code on click",
  "version": "1.0.0",
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com https://ssl.google-analytics.com https://www.google-analytics.com; object-src 'self'",
  "icons": {
    "128": "xpath.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content-script/contentScript1.js",
        "content-script/content.js",
        "content-script/contentScript2.js",
        "dialog.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "xpath.png",
    "default_title": "TruePath",
    "default_popup": "popup/TruePath.html"
  },
  "background": {
    "scripts": [
      "extension/background.js",
      "install.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "clipboardWrite"
  ],
  "devtools_page": "devtools-panel/devtools.html",
  "author": "Sumit Ghosh",
  "homepage_url": "https://qaworld.ga/truepath"
}