Harvest/Jira worklog integration

Harvest/Jira worklog integration

Puts a button in Harvest that let's you log your harvest time directly into JIRA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Harvest/Jira worklog integration",
  "short_name": "Harvest/JIRA worklog",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Puts a button in Harvest that let's you log your harvest time directly into JIRA",
  "background": {
    "scripts": [
      "scripts/db.js",
      "scripts/background.js"
    ]
  },
  "web_accessible_resources": [
    "html/modal.html"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Harvest/Jira worklog integration"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "options_page": "html/settings.html",
  "options_ui": {
    "page": "html/settings.html",
    "chrome_style": true
  },
  "permissions": [
    "*://*.atlassian.net/*",
    "*://*.harvestapp.com/*",
    "webRequest",
    "webRequestBlocking",
    "alarms",
    "contextMenus",
    "notifications",
    "idle",
    "tabs"
  ],
  "optional_permissions": [
    "*://*/"
  ]
}