Gmail Auto BCC

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

Wat is Gmail Auto BCC?

Gmail Auto BCC is een Chrome-extensie ontwikkeld door Clockk.com Inc., en de belangrijkste functie is "Automatically BCC all Gmail emails to list of addresses of your choosing.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gmail Auto BCC

Download Gmail Auto BCC-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Gmail Auto BCC Gmail Auto BCC
ID ldhebpdoflkjjebhhmihfkoakjdebhlp
Officiële URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp
Beschrijving Automatically BCC all Gmail emails to list of addresses of your choosing.
Bestandsgrootte 340 KB
Aantal Installaties 437
Huidige Versie 1.0.6
Laatst Bijgewerkt 2021-10-29
Publicatiedatum 2019-07-10
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Clockk.com Inc.
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://clockk.com/
URL van de Privacybeleid Pagina https://clockk.com/our-privacy-promise
Ondersteunde Talen 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"
    ]
}