Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
Gmail Auto BCC क्या है?
Gmail Auto BCC Clockk.com Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically BCC all Gmail emails to list of addresses of your choosing."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Auto BCC एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/ |
गोपनीयता नीति पृष्ठ 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" ] } |