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
官方網址 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"
    ]
}