Gmail Auto BCC

Automatically BCC all Gmail emails to list of addresses of your choosing.

What is Gmail Auto BCC?

Gmail Auto BCC is a Chrome extension developed by Clockk.com Inc., and its main feature is "Automatically BCC all Gmail emails to list of addresses of your choosing.".

Extension Screenshots

screenshot

Download Gmail Auto BCC Extension CRX File

Download Gmail Auto BCC extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Configure list of email addresses that should be automatically BCC'd on any emails sent through the Gmail website.

You can turn the extension on and off at any time.                    

Extension Basic Information

Name Gmail Auto BCC Gmail Auto BCC
ID ldhebpdoflkjjebhhmihfkoakjdebhlp
Official URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp
Description Automatically BCC all Gmail emails to list of addresses of your choosing.
File Size 340 KB
Installation Count 437
Current Version 1.0.6
Last Updated 2021-10-29
Publish Date 2019-07-10
Rating 3.00/5 Total 4 Ratings
Developer Clockk.com Inc.
Email [email protected]
Payment Type free
Extension Website https://clockk.com/
Privacy Policy Page URL https://clockk.com/our-privacy-promise
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Auto BCC",
    "author": "Clockk.com Inc.",
    "homepage_url": "https:\/\/clockk.com\/",
    "short_name": "Gmail Auto BCC",
    "description": "Automatically BCC all Gmail emails to list of addresses of your choosing.",
    "version": "1.0.6",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/clockk auto bcc 48.png",
        "128": "icons\/clockk auto bcc 128.png"
    },
    "browser_action": {
        "default_title": "clockk-auto-bcc",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "gmail.js"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "storage"
    ]
}