Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
Apa itu Gmail Auto BCC?
Gmail Auto BCC adalah ekstensi Chrome yang dikembangkan oleh Clockk.com Inc., dan fitur utamanya adalah "Automatically BCC all Gmail emails to list of addresses of your choosing.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gmail Auto BCC
Unduh file ekstensi Gmail Auto BCC dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Gmail Auto BCC |
ID | ldhebpdoflkjjebhhmihfkoakjdebhlp |
URL Resmi | https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp |
Deskripsi | Automatically BCC all Gmail emails to list of addresses of your choosing. |
Ukuran File | 340 KB |
Jumlah Instalasi | 437 |
Versi Saat Ini | 1.0.6 |
Terakhir Diperbarui | 2021-10-29 |
Tanggal Publikasi | 2019-07-10 |
Penilaian | 3.00/5 Total 4 Penilaian |
Pengembang | Clockk.com Inc. |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://clockk.com/ |
URL Halaman Kebijakan Privasi | https://clockk.com/our-privacy-promise |
Bahasa yang Didukung | 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" ] } |