EasyClock

EasyClock

Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EasyClock",
  "manifest_version": 2,
  "version": "1.1.5",
  "author": "Aaron Becker",
  "description": "Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen",
  "icons": {
    "128": "/images/icon.png"
  },
  "web_accessible_resources": [
    "easyclock.js"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "offline_enabled": true,
  "short_name": "EasyClock"
}