Clock for Google Chrome™

Clock for Google Chrome™

An analogue clock in the toolbar!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "manifest_version": 3,
  "background": {
    "service_worker": "worker.js"
  },
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "name": "__MSG_extensionName__",
  "options_page": "html/options.html",
  "offline_enabled": true,
  "permissions": [
    "notifications",
    "storage",
    "alarms",
    "offscreen",
    "idle"
  ],
  "version": "2.2.1.0",
  "short_name": "__MSG_extensionName__",
  "minimum_chrome_version": "120",
  "action": {
    "default_title": "__MSG_extensionName__",
    "default_popup": "html/popup.html"
  }
}