qTest Explorer Extension

qTest Explorer Extension

Extension to assist qTest Explorer application to capture web pages on Google Chrome browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjNC/Iqgvg2k5E8R2YJn7ajs9B9bpW/lL1rluqaladKGlyGdB50QEqG7Y++ua5QDNttESUSPbD4GEObS1YJreqcLYFMkCDRm9fh8eFINN/cwprROnmgnA1vJVKDz0fcLJbfDpN/6so44fOBHq0y/YhY4FxWkhvsb21j2H4T9GktOVxhdwpooVP8OKluZEy2xdk6yVzIqAlKUnkJNUiwEKD/Zd+yz/hdW8uZnRmJSh98teKFW0b39oBUTI/v0/pLflczQ131pqBaVYOsWNqmRdFbe7eOGq6bmv1jlLKzy0R55gf96R2xTVenbCidkM2JkXrj330eeWwUCfKZFgswkxlQIDAQAB",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "engine/content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "js": [
        "engine/dojo.js",
        "engine/jquery.js",
        "engine/sencha_touch.js",
        "engine/kendo_ui.js",
        "engine/jdedwards.js",
        "engine/CaptureAngularApp.js",
        "engine/plugin.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "engine/dojo.js",
    "engine/jquery.js",
    "engine/sencha_touch.js",
    "engine/kendo_ui.js",
    "engine/jdedwards.js",
    "engine/CaptureAngularApp.js",
    "engine/plugin.js"
  ],
  "name": "qTest Explorer Extension",
  "short_name": "qTest Explorer Extension",
  "background": {
    "persistent": true,
    "scripts": [
      "engine/background.js"
    ]
  },
  "description": "Extension to assist qTest Explorer application to capture web pages on Google Chrome browser",
  "icons": {
    "16": "engine/icon_16.png",
    "32": "engine/icon_32.png",
    "48": "engine/icon_48.png",
    "128": "engine/icon_128.png"
  },
  "incognito": "spanning",
  "homepage_url": "https://www.qasymphony.com",
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "nativeMessaging",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_security_policy": "default-src 'none'; script-src 'self'; connect-src wss://localhost:30714; base-uri 'none'; form-action 'none';",
  "version": "1.0.29"
}