Zephyr Capture for JIRA

Zephyr Capture for JIRA

Rapid agile testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zephyr Capture for JIRA",
  "version": "3.1.2.0",
  "description": "Rapid agile testing.",
  "manifest_version": 2,
  "icons": {
    "16": "chrome/skin/zephyr_feather_16.png",
    "32": "chrome/skin/zephyr_feather_32.png",
    "48": "chrome/skin/zephyr_feather_48.png",
    "128": "chrome/skin/zephyr_feather_128.png"
  },
  "browser_action": {
    "default_icon": "chrome/skin/zephyr_feather_32.png",
    "default_title": "Zephyr Capture for JIRA"
  },
  "commands": {
    "pause-or-resume-recording": {
      "description": "Pause/Resume recording",
      "global": true,
      "suggested_key": {
        "default": "Alt+P"
      }
    },
    "stop-recording": {
      "description": "Stop recording",
      "global": true,
      "suggested_key": {
        "default": "Alt+S"
      }
    }
  },
  "background": {
    "page": "chrome/content/webkit/capture-background.html"
  },
  "chrome_url_overrides": {},
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "chrome/content/capture-utils.js",
        "chrome/content/webkit/capture-injected.js"
      ]
    },
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "chrome/content/webkit/execution-inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "downloads",
    "cookies",
    "tabs",
    "activeTab",
    "unlimitedStorage",
    "tabCapture"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}