Gmail Unsubscribe - bulk email unsubscription

Gmail Unsubscribe - bulk email unsubscription

Unsubscribe from all unwanted emails in bulk with one click. Take back control of your inbox! From the makers of Baxter.

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": "3.0.2",
  "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/*"
  ],
  "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>"
      ]
    }
  ]
}