jHelper / Jira Helper

jHelper / Jira Helper

jHelper (Jira Helper) will help you manage your Jira tickets and provide quick access to them. Take a look at the video on the left!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "jHelper / Jira Helper",
  "description": "jHelper (Jira Helper) will help you manage your Jira tickets and provide quick access to them. Take a look at the video on the left!",
  "version": "0.0.6",
  "author": "Mariano Marzullo, Esteban Jelicich and Fernando Gabrieli",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "popup/icon.png",
    "default_popup": "popup/popup.html",
    "default_title": "Jira Helper"
  },
  "icons": {
    "16": "popup/icon.png",
    "48": "popup/icon48.png",
    "128": "popup/icon128.png"
  },
  "options_page": "popup/options/options.html",
  "background": {
    "scripts": []
  },
  "optional_permissions": [],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "popup/node_modules/jquery/dist/jquery.min.js",
        "webpack-bundle-dom.js"
      ],
      "css": []
    }
  ]
}