Stopwatch

Stopwatch

Simple stopwatch with the ability to track laps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "40",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "webview",
    "https://stopwatch-app.com/"
  ],
  "icons": {
    "128": "img/icon-128.png",
    "144": "img/icon-144.png",
    "192": "img/icon-192.png",
    "256": "img/icon-256.png",
    "512": "img/icon-512.png",
    "1024": "img/icon-1024.png"
  },
  "offline_enabled": true
}