Inbox When Ready for Gmail™

Inbox When Ready for Gmail™

Protect your focus... spend less time on your email.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "service_worker.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon-lock-gmail-32.png",
        "images/icon-32.png",
        "scripts/get-gmail-globals.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://inboxwhenready.org/*",
        "https://mail.google.com/*"
      ],
      "css": [
        "styles/gmail.css",
        "styles/inbox-when-ready.css"
      ],
      "js": [
        "scripts/content_scripts/vendor/zepto.min.js",
        "scripts/content_scripts/vendor/raven.min.js",
        "scripts/content_scripts/inbox-when-ready.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "default-src; script-src 'self'; connect-src https://api.inboxwhenready.org/ https://api.mixpanel.com/track https://api.mixpanel.com/engage; style-src 'self'; img-src 'self' https://inboxwhenready.org data:"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "24": "images/icon-24.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png"
    }
  },
  "host_permissions": [
    "https://inboxwhenready.org/*",
    "https://mail.google.com/*"
  ]
}