ChronoMouse

ChronoMouse

Instantly displays local time information, performs easy Google Searches.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChronoMouse",
  "description": "Instantly displays local time information, performs easy Google Searches.",
  "version": "2.4.6",
  "browser_action": {
    "default_icon": "mouse.png",
    "default_popup": "popup.html",
    "default_title": "ChronoMouse"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "https://www.google.com/calendar"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "codearrays.js",
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "mouse48.png",
    "128": "mouse128.png"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "https://ajax.googleapis.com/"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}