Harvest Time Tracker

Harvest Time Tracker

Track time from Firefox and within popular project management tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "3.1.2",
  "name": "Harvest Time Tracker",
  "description": "Track time from Edge, Firefox and within popular project management tools.",
  "author": "Iridesco, LLC d/b/a Harvest",
  "manifest_version": 2,
  "icons": {
    "16": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/[email protected]",
      "38": "images/[email protected]"
    },
    "default_title": "Start a Harvest timer",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+H"
      }
    }
  },
  "background": {
    "scripts": [
      "js/config.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://*.harvestapp.com https://*.harvestapp.test; object-src 'self'",
  "permissions": [
    "https://github.com/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://basecamp.com/*"
      ],
      "js": [
        "js/profiles/basecamp2.js"
      ]
    },
    {
      "matches": [
        "https://3.basecamp.com/*"
      ],
      "js": [
        "js/profiles/basecamp3.js"
      ],
      "css": [
        "css/basecamp3.css"
      ]
    },
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "js/profiles/trello.js"
      ],
      "css": [
        "css/trello.css"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/profiles/github.js"
      ],
      "css": [
        "css/github.css"
      ]
    },
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "js": [
        "js/profiles/asana.js"
      ],
      "css": [
        "css/asana.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}