Localise Times

Localise Times

Detects times given with time zone abbreviations, and converts them to your local time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.40.12",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "96": "icons/icon_96.png",
    "192": "icons/icon_192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "popup/tzInfo.js",
        "localisetimes.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "19": "icons/icon_19.png",
      "32": "icons/icon_32.png",
      "38": "icons/icon_38.png",
      "48": "icons/icon_48.png",
      "64": "icons/icon_64.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en"
}