Freework Time Tracking & Task Management

Freework Time Tracking & Task Management

Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Freework Time Tracking & Task Management",
  "description": "Extends the Freework Web-App to track your Time and manage your Timesheet from the Browser!",
  "version": "1.6.3",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject-task-create.esm.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.atlassian.net/*"
      ],
      "js": [
        "jira.esm.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Freework"
  },
  "icons": {
    "16": "/assets/16.png",
    "48": "/assets/48.png",
    "128": "/assets/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "background.esm.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "task-create.html",
        "assets/fonts/SFProText-Bold.ttf",
        "assets/fonts/SFProText-Regular.ttf",
        "assets/fonts/SFProText-Semibold.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "create-task": {
      "suggested_key": {
        "windows": "Ctrl+Shift+X",
        "mac": "Command+Shift+X",
        "chromeos": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X"
      },
      "description": "Create task",
      "global": false
    },
    "start-tracking": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      },
      "description": "Start tracking",
      "global": false
    }
  }
}