Timezone.email

Timezone.email

Timezone.email - Easy timezone converter for Gmail and Inbox by Gmail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Timezone.email",
  "version": "1.2",
  "description": "Timezone.email - Easy timezone converter for Gmail and Inbox by Gmail",
  "permissions": [
    "declarativeContent",
    "storage",
    "https://mail.google.com/",
    "https://inbox.google.com/",
    "https://use.fontawesome.com/*",
    "https://timezone.email/*"
  ],
  "background": {
    "scripts": [
      "js/moment-with-locales.js",
      "js/moment-timezone-with-data.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*",
        "https://use.fontawesome.com/*"
      ],
      "js": [
        "js/chrono.js",
        "js/date.js",
        "js/jquery.js",
        "js/moment-with-locales.js",
        "js/moment-timezone-with-data.js",
        "js/inboxsdk.js",
        "js/loader.js"
      ]
    }
  ],
  "options_page": "options.html",
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/timezone16.png",
      "32": "images/timezone32.png",
      "48": "images/timezone48.png",
      "64": "images/timezone64.png",
      "128": "images/timezone128.png",
      "256": "images/timezone256.png",
      "512": "images/timezone512.png",
      "1024": "images/timezone1024.png"
    }
  },
  "icons": {
    "16": "images/timezone16.png",
    "32": "images/timezone32.png",
    "48": "images/timezone48.png",
    "64": "images/timezone64.png",
    "128": "images/timezone128.png",
    "256": "images/timezone256.png",
    "512": "images/timezone512.png",
    "1024": "images/timezone1024.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://use.fontawesome.com; object-src 'self'"
}