Epoch/Unix Timestamp Converter

Epoch/Unix Timestamp Converter

This extension provides a quick way to see Epoch/Unix timestamps in a readable format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Epoch/Unix Timestamp Converter",
  "version": "1.0",
  "description": "This extension provides a quick way to see Epoch/Unix timestamps in a readable format.",
  "author": "Joel Henke",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}