QMetry for Jira (QTM4J) - Exploratory Testing

QMetry for Jira (QTM4J) - Exploratory Testing

QMetry Test Management for Jira - Exploratory Testing add-on is designed to empower users to carry out Exploratory Testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "QMetry for Jira (QTM4J) - Exploratory Testing",
  "description": "QMetry Test Management for Jira - Exploratory Testing add-on is designed to empower users to carry out Exploratory Testing.",
  "short_name": "QMetry for Jira (QTM4J) - Exploratory Testing",
  "version": "1.5.2",
  "default_locale": "en",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "action": {
    "default_icon": "icons/icon.png",
    "default_title": "QMetry for Jira (QTM4J) - Exploratory Testing",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "input_components": [
    {
      "name": "Test IME",
      "type": "ime",
      "id": "test",
      "description": "Test IME",
      "language": "en-US",
      "layouts": [
        "us::eng"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "libs/jquery-2.1.0.js",
        "content scripts/Shared/communicator.js",
        "content scripts/Shared/utility.js",
        "content scripts/Shared/DOMNodeProperties.js",
        "content scripts/Recorder/bindListeners.js",
        "content scripts/Recorder/removeListeners.js",
        "content scripts/Recorder/recorder.js",
        "content scripts/Player/DOMElementFinder.js",
        "content scripts/Player/eventInject.js",
        "content scripts/Player/player.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "options/logDefect.html"
      ],
      "matches": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://qmetry.com/*"
    ]
  }
}