LetXPath

LetXPath

XPath Finder, simple and useful, open-source project

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "LetXPath",
  "short_name": "XPath finder",
  "description": "XPath Finder, simple and useful, open-source project",
  "author": "Koushik Chatterjee",
  "version": "1.0.4",
  "manifest_version": 2,
  "icons": {
    "128": "assets/32.png"
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "activeTab",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/src/content.js",
        "app/src/anchorXPath.js",
        "app/src/getCSS.js",
        "app/src/getLabel.js",
        "app/src/methodName.js",
        "app/src/record.js",
        "app/src/search.js",
        "app/src/textXPath.js",
        "app/src/utils.js",
        "app/src/parentElements.js",
        "app/src/handleTable.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "devtools_page": "devtools.html",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "homepage_url": "https://www.letcode.in",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+L",
        "mac": "Alt+L",
        "linux": "Alt+L",
        "default": "Alt+L"
      },
      "description": "LetCode"
    }
  },
  "browser_action": {
    "default_title": "LetXPath",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "option/option.html"
  },
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}