Stopwatch

Stopwatch

Stopwatch for all modern browsers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stopwatch",
  "version": "1.0.0.1",
  "manifest_version": 2,
  "homepage_url": "https://stopwatch.top",
  "description": "Stopwatch for all modern browsers",
  "icons": {
    "16": "icon.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "offline_enabled": false,
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Stopwatch"
  },
  "incognito": "spanning",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "settings.html"
}