Stopwatch and Counter

Stopwatch and Counter

It combines the functions of a stopwatch and a counter. You can measure work time and stability.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.1.0",
  "manifest_version": 2,
  "minimum_chrome_version": "83.0.4103.97",
  "description": "__MSG_description__",
  "icons": {
    "128": "128.png"
  },
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "16.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en"
}