Mailbutler for Gmail

Mailbutler for Gmail

Improves your inbox with productivity-boosting features such as an AI-powered assistant, email tracking, and smart email scheduling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mailbutler for Gmail",
  "short_name": "Mailbutler",
  "description": "__MSG_extDescription__",
  "version": "7530.23636",
  "default_locale": "en",
  "background": {
    "service_worker": "script/mailbutler_background.js"
  },
  "permissions": [
    "scripting",
    "storage",
    "declarativeNetRequest",
    "contextMenus",
    "gcm",
    "notifications"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://*.mailbutler.io/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "css": [
        "css/mailbutler_content.css"
      ],
      "js": [
        "script/mailbutler_content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.mailbutler.io/auth/*"
      ],
      "js": [
        "script/oauth_callback.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*",
        "assets/img/*",
        "_locales/*",
        "pageWorld.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "extension_ids": [],
      "use_dynamic_url": false
    }
  ],
  "icons": {
    "16": "assets/img/logo_16x16.png",
    "48": "assets/img/logo_48x48.png",
    "128": "assets/img/logo_128x128.png"
  },
  "homepage_url": "https://www.mailbutler.io"
}