BunBox

BunBox

BunBox streamlines Gmail™ inboxes with AI, summarizing emails and suggesting responses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BunBox",
  "short_name": "BunBox",
  "version": "0.1.3",
  "author": "Miles Collins <[email protected]>",
  "description": "BunBox streamlines Gmail™ inboxes with AI, summarizing emails and suggesting responses.",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "extension.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Click to open panel",
    "default_icon": "images/icon.png"
  },
  "side_panel": {
    "default_path": "popup.html"
  },
  "permissions": [
    "scripting",
    "identity",
    "identity.email",
    "storage",
    "sidePanel",
    "background"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://ftd98t4jkd.execute-api.us-east-1.amazonaws.com",
    "http://localhost:4000",
    "https://accounts.google.com/gsi/client"
  ]
}