Epoch Converter

Epoch Converter

Provides a popup showing a human readable date of a highlighted Unix timestamp.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Epoch Converter",
  "description": "Provides a popup showing a human readable date of a highlighted Unix timestamp.",
  "version": "1.1.2",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "bubble.css"
      ],
      "js": [
        "jquery.min.js",
        "selection.js"
      ],
      "all_frames": true
    }
  ]
}