Time Blocker

Time Blocker

A timer for working with the time blocking technique.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Time Blocker",
  "version": "0.9.0.2",
  "description": "A timer for working with the time blocking technique.",
  "icons": {
    "24": "icons/TimeBlocker24.png",
    "32": "icons/TimeBlocker32.png",
    "48": "icons/TimeBlocker48.png",
    "96": "icons/TimeBlocker96.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background_scripts/timer_background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/TimeBlocker32.png",
    "default_title": "Time Blocker",
    "default_popup": "popup/timer_control.html"
  },
  "commands": {
    "time_block": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "Starts a time block session"
    },
    "small_break": {
      "suggested_key": {
        "default": "Alt+V"
      },
      "description": "Starts a small break session"
    },
    "big_break": {
      "suggested_key": {
        "default": "Alt+B"
      },
      "description": "Starts a big break session"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Stops the current session"
    }
  }
}