Harvest AutoTimer

Harvest AutoTimer

Auto start/stop a timer on Harvest when starting and finishing tasks on software management tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Harvest AutoTimer",
  "description": "Auto start/stop a timer on Harvest when starting and finishing tasks on software management tools.",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "/images/icon_enabled_16.png",
    "32": "/images/icon_enabled_32.png",
    "48": "/images/icon_enabled_48.png",
    "128": "/images/icon_enabled_128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.pivotaltracker.com/*"
      ],
      "all_frames": true,
      "js": [
        "harvest.js",
        "pt.js"
      ]
    }
  ],
  "action": {
    "default_title": "Settings"
  }
}