Short Date Format Fix For Google Calendar™

Short Date Format Fix For Google Calendar™

Changes the short date format in Google Calendar from [month]/[day] to [day]/[month] or the other way around.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Short Date Format Fix For Google Calendar™",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Changes the short date format in Google Calendar from [month]/[day] to [day]/[month] or the other way around.",
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "fixDateFormat.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}