Gmail Auto BCC

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

什么是Gmail Auto BCC?

Gmail Auto BCC是由Clockk.com Inc.开发的Chrome扩展程序,该扩展的主要功能是“Automatically BCC all Gmail emails to list of addresses of your choosing.”。

扩展截图

screenshot

下载Gmail Auto BCC扩展crx文件

下载Gmail Auto BCC扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Gmail Auto BCC Gmail Auto BCC
ID ldhebpdoflkjjebhhmihfkoakjdebhlp
官方URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp
简介 Automatically BCC all Gmail emails to list of addresses of your choosing.
文件大小 340 KB
安装次数 437
当前版本 1.0.6
更新时间 2021-10-29
上架时间 2019-07-10
评分 3.00/5 共4次评分
开发者 Clockk.com Inc.
电子邮箱 [email protected]
付费类型 free
扩展官网 https://clockk.com/
隐私政策页面URL https://clockk.com/our-privacy-promise
支持的语言 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"
    ]
}