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.」です。
拡張機能のスクリーンショット
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 |
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. |
Eメール | [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" ] } |