Timezone Buddy

Timezone Buddy

Allow you see everyone's timezone while writing the email

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Timezone Buddy",
  "description": "Allow you see everyone's timezone while writing the email",
  "version": "1.0.2",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*",
        "https://maps.googleapis.com/maps/api/*"
      ],
      "js": [
        "inboxsdk.js",
        "underscore.js",
        "content.js",
        "jquery.js",
        "location.js",
        "jquery-ui.js",
        "tracking.js"
      ],
      "css": [
        "styles.css",
        "jquery-ui.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "https://*.google.com/",
    "https://maps.googleapis.com/*",
    "https://mail.google.com/",
    "https://inbox.google.com/",
    "geolocation",
    "identity",
    "identity.email"
  ],
  "web_accessible_resources": [
    "timezonerow.html",
    "index.html"
  ],
  "manifest_version": 2
}