Task Break Timer

Task Break Timer

A simple countdown timer for tasks and breaks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Task Break Timer",
  "description": "A simple countdown timer for tasks and breaks",
  "version": "1.0",
  "icons": {
    "16": "image/icon16.png",
    "32": "image/icon32.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "browser_action": {
    "default_title": "Task Break Timer"
  },
  "permissions": [
    "alarms",
    "contextMenus",
    "notifications",
    "storage",
    "tts"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      }
    },
    "reset_timer": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Reset timer"
    }
  }
}