Harvest Time Tracker

Harvest Time Tracker

Track time from Chrome and within popular project management tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "4.1.6",
  "name": "Harvest Time Tracker",
  "description": "Track time from Chrome and within popular project management tools.",
  "author": "Iridesco, LLC d/b/a Harvest",
  "manifest_version": 3,
  "icons": {
    "16": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "action": {
    "default_icon": {
      "19": "images/[email protected]",
      "38": "images/[email protected]"
    },
    "default_title": "Start a Harvest timer",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+H"
      }
    }
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://basecamp.com/*"
      ],
      "js": [
        "js/profiles/basecamp2.js",
        "js/platform.js"
      ]
    },
    {
      "matches": [
        "https://3.basecamp.com/*"
      ],
      "js": [
        "js/profiles/basecamp3.js",
        "js/platform.js"
      ],
      "css": [
        "css/basecamp3.css"
      ]
    },
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "js/profiles/trello.js",
        "js/platform.js"
      ],
      "css": [
        "css/trello.css"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/profiles/github.js",
        "js/platform.js"
      ],
      "css": [
        "css/github.css"
      ]
    },
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "js": [
        "js/profiles/asana.js",
        "js/platform.js"
      ],
      "css": [
        "css/asana.css"
      ]
    }
  ]
}