Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
Gmail Auto BCC là gì?
Gmail Auto BCC là một tiện ích mở rộng Chrome được phát triển bởi Clockk.com Inc., và tính năng chính của nó là "Automatically BCC all Gmail emails to list of addresses of your choosing.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gmail Auto BCC
Tải xuống các tệp mở rộng Gmail Auto BCC dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gmail Auto BCC |
ID | ldhebpdoflkjjebhhmihfkoakjdebhlp |
URL Chính Thức | https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp |
Mô tả | Automatically BCC all Gmail emails to list of addresses of your choosing. |
Kích Thước Tệp | 340 KB |
Số Lần Cài Đặt | 437 |
Phiên Bản Hiện Tại | 1.0.6 |
Cập Nhật Lần Cuối | 2021-10-29 |
Ngày Phát Hành | 2019-07-10 |
Đánh Giá | 3.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Clockk.com Inc. |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://clockk.com/ |
URL Trang Chính Sách Bảo Mật | https://clockk.com/our-privacy-promise |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |