YoCoBoard: An Online Time Tracker

YoCoBoard: An Online Time Tracker

Add YoCo to Chrome and track real time work hours and productivity right away.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YoCoBoard: An Online Time Tracker",
  "description": "Add YoCo to Chrome and track real time work hours and productivity right away.",
  "version": "4.0.5",
  "icons": {
    "16": "images/inactive_yoco_16.png",
    "48": "images/yoco48.png",
    "128": "images/yoco128.png"
  },
  "action": {
    "default_icon": "images/inactive_yoco_16.png",
    "default_title": "YoCoBoard Time tracker",
    "default_popup": "html/yoco.html"
  },
  "options_page": "html/options.html",
  "options_ui": {
    "page": "html/options.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "css/minifiedCSS/main.min.css"
      ],
      "matches": [
        "*://*.my.yocoboard.com/dummy"
      ],
      "js": [
        "/content.min.js",
        "/options.min.js",
        "/jquery-3.6.0.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://mystaging.yocoboard.com/*",
      "https://my.yocoboard.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "identity",
    "scripting",
    "storage"
  ],
  "optional_host_permissions": [
    "*://*/"
  ],
  "oauth2": {
    "client_id": "547495109623-llqei4lko8eukf1eqm27ppujvolffppl.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}