Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
Gmail Auto BCCคืออะไร?
Gmail Auto BCC เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Clockk.com Inc. และคุณลักษณะหลักของมันคือ "Automatically BCC all Gmail emails to list of addresses of your choosing."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Auto BCC
ดาวน์โหลดไฟล์ส่วนขยาย 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. |
อีเมล | [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" ] } |