Auto time convert

Auto time convert

Chrome-Extension that automatically converts time to your local time zone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto time convert",
  "short_name": "Auto time convert",
  "description": "Chrome-Extension that automatically converts time to your local time zone.",
  "version": "1.0.0",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/pageUpdater.js"
      ],
      "css": [
        "css/abbreviation.css"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}