Big Clock | Minute

Big Clock | Minute

It is a add-on that displays the current hour and minute in the toolbar as a large readable add-on icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Big Clock | Minute",
  "version": "1.0.0",
  "description": "It is a add-on that displays the current hour and minute in the toolbar as a large readable add-on icon.",
  "icons": {
    "16": "images/minute-icon-16.png",
    "32": "images/minute-icon-32.png",
    "48": "images/minute-icon-48.png",
    "128": "images/minute-icon-128.png"
  },
  "action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "images/mn-dark-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "management"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "js": [
        "./popup/popup.js",
        "./app.js",
        "./scripts/gtag.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}