Study Timer

Study Timer

Use Study Timer: Boost your time focus with the Pomodoro Technique and task timer for ultimate productivity with our app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "0.4",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "icons": {
    "16": "public/assets/img/h-16.png",
    "48": "public/assets/img/h-48.png",
    "64": "public/assets/img/h-64.png",
    "96": "public/assets/img/h-96.png",
    "128": "public/assets/img/h-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "commands": {
    "toggle_timer_status": {
      "suggested_key": {
        "default": "Ctrl+Shift+T",
        "mac": "Command+Shift+T"
      },
      "description": "Toggle Pause/Resume a timer"
    }
  },
  "options_page": "expire.html"
}