Auto BCC CC Gmail & Inbox

Auto BCC CC Gmail & Inbox

Automatically add BCC/CC fields when you send emails. Allow different BCC/CC addresses per each of your Gmail accounts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "short_name": "Auto Bcc For Gmail",
  "name": "Auto BCC CC Gmail & Inbox",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "popup.html",
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "css": [
        "css/sweetalert.css"
      ],
      "js": [
        "javascript/jquery.js",
        "javascript/sweetalert.js",
        "javascript/bcc.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon32.png",
    "default_title": "Auto Bcc"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.gmplus.io/*",
    "https://mail.google.com/*"
  ],
  "manifest_version": 3
}