Gmail Auto BCC
Automatically BCC all Gmail emails to list of addresses of your choosing.
O que é Gmail Auto BCC?
Gmail Auto BCC é uma extensão do Chrome desenvolvida por Clockk.com Inc., e sua principal característica é "Automatically BCC all Gmail emails to list of addresses of your choosing.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gmail Auto BCC
Baixe arquivos de extensão Gmail Auto BCC no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Gmail Auto BCC |
ID | ldhebpdoflkjjebhhmihfkoakjdebhlp |
URL Oficial | https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp |
Descrição | Automatically BCC all Gmail emails to list of addresses of your choosing. |
Tamanho do Arquivo | 340 KB |
Contagem de Instalações | 437 |
Versão Atual | 1.0.6 |
Última Atualização | 2021-10-29 |
Data de Publicação | 2019-07-10 |
Classificação | 3.00/5 Total de 4 Avaliações |
Desenvolvedor | Clockk.com Inc. |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://clockk.com/ |
URL da Página de Política de Privacidade | https://clockk.com/our-privacy-promise |
Idiomas Suportados | 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" ] } |