Quick World Clock

Quick World Clock

World Clock at a glance in your new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.5",
  "name": "Quick World Clock",
  "description": "World Clock at a glance in your new tab",
  "homepage_url": "https://chrome.google.com/webstore/detail/quick-world-clock/enaaiccdidfakbeiikclbfhgfcdfmimh",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://api.slattonmedia.com/quickworldclock/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content_script_idle.js"
      ],
      "matches": [
        "https://*.www.quickworldclock.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/bd-16.png",
      "32": "images/bd-32.png",
      "48": "images/bd-48.png",
      "128": "images/bd-128.png"
    }
  },
  "icons": {
    "16": "images/bd-16.png",
    "32": "images/bd-32.png",
    "48": "images/bd-48.png",
    "128": "images/bd-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "landing.html"
  }
}