Baxter - Email Organizer & Unsubscriber

Baxter - Email Organizer & Unsubscriber

Unsubscribe, delete, and organize your email in one click. Simple & powerful Gmail add-on

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "author": "star",
  "version": "1.19.1",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "default_locale": "en",
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [
        "assets/css/main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "serviceWorker.bundle.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "alarms",
    "cookies"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://usebaxter.com/*",
    "https://chrome.google.com/webstore/*",
    "https://*.usebaxter.com/*",
    "https://*.openai.com/"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "32": "assets/icons/icon-32.png",
      "48": "assets/icons/icon-48.png",
      "64": "assets/icons/icon-64.png",
      "128": "assets/icons/icon-128.png"
    },
    "default_title": "Baxter Extension",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "gmailJsLoader.bundle.js",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}