Time Clock

Time Clock

Display a clock on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_TimeClock__",
  "version": "0.2",
  "default_locale": "zh_CN",
  "action": {
    "default_icon": {
      "19": "time.png",
      "38": "time.png"
    },
    "default_popup": "option/options.html",
    "default_title": "__MSG_TimeClock__"
  },
  "content_scripts": [
    {
      "js": [
        "option/defaults.js",
        "clock.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "default-src": "none",
    "style-src": "self",
    "script-src": "self"
  },
  "description": "__MSG_DisplaysAClockOnAPage__",
  "icons": {
    "48": "time.png",
    "128": "time.png"
  },
  "options_page": "option/painted_eggshell.html",
  "permissions": [
    "storage"
  ],
  "short_name": "__MSG_TimeClock__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "circle/circle_clock.js",
        "circle/circle_clock.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}