app/manifest.json

Summary

Maintainability
Test Coverage
{
  "name": "__MSG_appName__",
  "short_name": "JTB",
  "version": "4.0.7",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon.png",
    "128": "images/icon.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/chromereload.js",
      "scripts/background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+J",
        "windows": "Alt+J",
        "mac": "Command+J"
      }
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "background",
    "*://*.google.com/",
    "notifications",
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "omnibox": {
    "keyword": "OMNIBOX-KEYWORD"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon.png",
      "38": "images/icon.png"
    },
    "default_title": "Jira Tool Box",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/icon.png"
  ]
}