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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة سياسة الخصوصية | 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" ] } |