The Clock

The Clock

Provides easy access for users to keep track of time in different time zones and plan for activities!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Clock",
  "description": "Provides easy access for users to keep track of time in different time zones and plan for activities!",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "version": "1.0.0.11",
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "Your Timely Helper!"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.2.1.js",
      "js/coolclock.js",
      "js/moreskins.js",
      "js/background.js",
      "js/sortable.js"
    ]
  },
  "homepage_url": "https://edwinfychan.com",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'"
}