Clickup Automatic Time Tracking

Clickup Automatic Time Tracking

This extension automatically starts the time tracking notifications and tasks and provides some additional shortcuts for clickup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clickup Automatic Time Tracking",
  "description": "This extension automatically starts the time tracking notifications and tasks and provides some additional shortcuts for clickup.",
  "version": "0.7",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.clickup.com/*",
        "https://*.clickup.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "commands": {
    "track": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Start timer on current task or stop timer"
    },
    "complete": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Complete current task"
    },
    "toggle-enabled": {
      "suggested_key": {
        "default": "Ctrl+Period"
      },
      "description": "Disable/reenable automatic time tracking completely"
    }
  },
  "action": {
    "default_icon": "images/logo_128.png",
    "default_title": "FounderBlocks Clickup Extension",
    "default_popup": "options.html"
  }
}