Email Export Tool

Email Export Tool

Export emails in CSV, XLSX and PDF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Export Tool",
  "description": "Export emails in CSV, XLSX and PDF",
  "manifest_version": 3,
  "version": "2.0.0",
  "author": "Anant Negi",
  "background": {
    "service_worker": "lib/background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation",
    "downloads"
  ],
  "action": {
    "default_title": "Email Export Tool",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icon_16.png",
      "32": "/images/icon_32.png",
      "48": "/images/icon_48.png",
      "128": "/images/icon_128.png"
    }
  },
  "icons": {
    "16": "/images/icon_16.png",
    "32": "/images/icon_32.png",
    "48": "/images/icon_48.png",
    "128": "/images/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon_32.png"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://mail.google.com/"
  ]
}