Auto BCC for Gmail™

Auto BCC for Gmail™

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


{
  "version": "2023.1.21.0",
  "short_name": "AutoBcc",
  "name": "Auto BCC for Gmailâ„¢",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "css": [
        "sweetalert.css"
      ],
      "js": [
        "jquery.js",
        "sweetalert.js",
        "bcc.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    },
    {
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "license.js"
      ],
      "matches": [
        "https://paygate.autobcc.com/payments/license_key/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon32.png",
    "default_title": "Auto Bcc"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.autobcc.com/*",
    "https://mail.google.com/*"
  ],
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}