Jira HotLinker

Jira HotLinker

Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jira HotLinker",
  "description": "Jira HotLinker, quick access to Jira metadata when hovering over ticket numbers!",
  "version": "1.8.0",
  "manifest_version": 2,
  "icons": {
    "128": "resources/jiralink128.png"
  },
  "browser_action": {
    "default_title": "Click to always search for tickets on this page"
  },
  "minimum_chrome_version": "60",
  "background": {
    "scripts": [
      "build/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "resources/*"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://github.com/",
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}