Gmail Auto BCC

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

Hvad er Gmail Auto BCC?

Gmail Auto BCC er en Chrome-udvidelse udviklet af Clockk.com Inc., og dens hovedfunktion er "Automatically BCC all Gmail emails to list of addresses of your choosing.".

Udvidelsesskærmbilleder

screenshot

Download Gmail Auto BCC-udvidelses-CRX-fil

Download Gmail Auto BCC-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Gmail Auto BCC Gmail Auto BCC
ID ldhebpdoflkjjebhhmihfkoakjdebhlp
Officiel URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp
Beskrivelse Automatically BCC all Gmail emails to list of addresses of your choosing.
Filstørrelse 340 KB
Antal Installationer 437
Nuværende Version 1.0.6
Senest Opdateret 2021-10-29
Udgivelsesdato 2019-07-10
Bedømmelse 3.00/5 Samlet 4 Bedømmelser
Udvikler Clockk.com Inc.
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://clockk.com/
URL til Fortrolighedspolitik Side https://clockk.com/our-privacy-promise
Understøttede Sprog 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"
    ]
}