Unix Timestamp Hover

Unix Timestamp Hover

Hover over any unix timestamps on the page and read the time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Unix Timestamp Hover",
  "description": "Hover over any unix timestamps on the page and read the time",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/analytics.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/tipTip.css"
      ],
      "js": [
        "js/jquery-1.8.3.min.js",
        "js/jquery.highlight-4.js",
        "js/jquery.tipTip.minified.js",
        "js/extension.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}