Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
Cos'è Gmail Auto BCC?
Gmail Auto BCC è un'estensione di Chrome sviluppata da Clockk.com Inc., e la sua funzione principale è "Automatically BCC all Gmail emails to list of addresses of your choosing.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail Auto BCC
Scarica i file di estensione Gmail Auto BCC in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Gmail Auto BCC |
ID | ldhebpdoflkjjebhhmihfkoakjdebhlp |
URL Ufficiale | https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp |
Descrizione | Automatically BCC all Gmail emails to list of addresses of your choosing. |
Dimensione del File | 340 KB |
Conteggio Installazioni | 437 |
Versione Corrente | 1.0.6 |
Ultimo Aggiornamento | 2021-10-29 |
Data di Pubblicazione | 2019-07-10 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | Clockk.com Inc. |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://clockk.com/ |
URL della Pagina della Politica sulla Privacy | https://clockk.com/our-privacy-promise |
Lingue Supportate | 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" ] } |