Epoch-Converter

Epoch-Converter

This extension will add an unobtrusive Human-Readable time tag right next to all unix epoch timestamps in the page. For using just click on the icon of the extension to see Human-Readable Timestamp next to all the epochs in the page.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Epoch-Converter",
  "description": "This extension will add an unobtrusive Human-Readable time tag right next to any unix epoch timestamps in the editor.",
  "icons": {
    "120": "epoch_icon.png"
  },
  "version": "1.0.1",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "epoch_icon.png",
    "default_title": "Show Human-Readable Timestamps"
  }
}