Gmail Auto BCC

Gmail Auto BCC

Open source automatic cc/bcc for gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail Auto BCC",
  "description": "Open source automatic cc/bcc for gmail.",
  "version": "1.7",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "matches": [
        "https://inbox.google.com/*",
        "https://mail.google.com/*"
      ],
      "resources": [
        "src/icons/gray-scale-orange-square-mail.png",
        "src/icons/orange-square-mail.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://inbox.google.com/*",
        "https://mail.google.com/*"
      ],
      "resources": [
        "assets/gmail.ts-7-KkizdX.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "js": [
        "assets/gmail.ts-loader-IvZeWprR.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "host_permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "128": "src/icons/orange-square-mail.png"
    },
    "default_title": "Gmail AutoBCC"
  },
  "icons": {
    "128": "src/icons/orange-square-mail.png"
  },
  "options_page": "index.html"
}