Time Tool

Time Tool

A tool for dealing with and manipulating different time formats and zones with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Time Tool",
  "name": "Time Tool",
  "description": "A tool for dealing with and manipulating different time formats and zones with ease.",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "/build/index.html",
    "default_icon": {
      "16": "/images/icon-16.png",
      "32": "/images/icon-32.png",
      "48": "/images/icon-48.png",
      "128": "/images/icon-128.png"
    }
  },
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/moment.js",
        "/js/moment-timezone-with-data.js",
        "/js/handle-selection.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/styles/popup.css",
        "/styles/normalize.css",
        "/images/copy.png",
        "/images/checked.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}