Zoho QEngine Recorder

Zoho QEngine Recorder

The Zoho QEngine extension for Chrome is used to create test cases using the software's recorder feature.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zoho QEngine Recorder",
  "version": "1.0.8",
  "description": "The Zoho QEngine extension for Chrome is used to create test cases using the software's recorder feature.",
  "manifest_version": 3,
  "author": "subash",
  "offline_enabled": false,
  "permissions": [
    "cookies",
    "activeTab",
    "storage",
    "webNavigation",
    "tabs",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "file://*"
  ],
  "background": {
    "service_worker": "js/recorder_background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/Pilot-16.png",
      "32": "images/Pilot-32.png",
      "48": "images/Pilot-48.png",
      "64": "images/Pilot-64.png",
      "96": "images/Pilot-96.png",
      "128": "images/Pilot-128.png"
    },
    "default_title": "Zoho QEngine Recorder"
  },
  "icons": {
    "16": "images/Pilot-16.png",
    "32": "images/Pilot-32.png",
    "48": "images/Pilot-48.png",
    "64": "images/Pilot-64.png",
    "96": "images/Pilot-96.png",
    "128": "images/Pilot-128.png"
  },
  "omnibox": {
    "keyword": "qengine"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_origin_as_fallback": true,
      "js": [
        "public/PilotConstant.js",
        "js/contentScript.js",
        "js/jquery-3.2.1.min.js",
        "public/whole.js",
        "locator/userAgent.js"
      ],
      "css": [
        "css/inspector.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Alt+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/preview-banner.html",
        "html/preview-stopped.html",
        "images/Pilot-White-128.png",
        "images/sprite-img.svg",
        "css/fonts/Zoho_Puvi_Regular.eot",
        "css/fonts/Zoho_Puvi_Regular.woff",
        "css/fonts/Zoho_Puvi_Semibold.eot",
        "css/fonts/Zoho_Puvi_Semibold.woff",
        "css/fonts/Zoho_Puvi_Bold.eot",
        "css/fonts/Zoho_Puvi_Bold.woff"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; frame-ancestors 'none';script-src 'self';style-src 'unsafe-inline';connect-src 'self' https://qengine.zoho.com https://qengine.zoho.eu https://qengine.zoho.in;"
  }
}