SimplifyQA IDE

SimplifyQA IDE

Simplifyqa IDE Objectpicker to inspector a webelement and generate xpath to write test script . With All other property. Fast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SimplifyQA IDE",
  "description": "Simplifyqa IDE  Objectpicker to inspector a webelement and generate xpath to write test script . With All other property. Fast.",
  "version": "2.0.3",
  "homepage_url": "https://apps.simplify3x.com/",
  "icons": {
    "16": "assets/img/logo.png",
    "48": "assets/img/logo.png",
    "128": "assets/img/logo.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self';  object-src 'self';"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "assets/img/logo.png",
    "default_title": "Simplifyqa WebInspector"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/css/object.css"
      ],
      "js": [
        "objectManager2.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/object.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "offline_enabled": true
}