Timezone Buddy
Allow you see everyone's timezone while writing the email
O que é Timezone Buddy?
Timezone Buddy é uma extensão do Chrome desenvolvida por https://timezonebuddy.webflow.io, e sua principal característica é "Allow you see everyone's timezone while writing the email".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Timezone Buddy
Baixe arquivos de extensão Timezone Buddy 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
Often we waste too much time on finding the right time 🕐 that works everyone around the world. This extension allows you to see the timezone of all recipients while writing email directly
Informações Básicas da Extensão
Nome | |
ID | ifhaihpejfjbnliceghdebjgchjahllf |
URL Oficial | https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf |
Descrição | Allow you see everyone's timezone while writing the email |
Tamanho do Arquivo | 202 KB |
Contagem de Instalações | 60 |
Versão Atual | 1.0.2 |
Última Atualização | 2021-09-01 |
Data de Publicação | 2021-08-30 |
Classificação | 3.50/5 Total de 2 Avaliações |
Desenvolvedor | https://timezonebuddy.webflow.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://timezonebuddy.webflow.io/ |
URL da Página de Política de Privacidade | https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704 |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Timezone Buddy", "description": "Allow you see everyone's timezone while writing the email", "version": "1.0.2", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*", "https:\/\/maps.googleapis.com\/maps\/api\/*" ], "js": [ "inboxsdk.js", "underscore.js", "content.js", "jquery.js", "location.js", "jquery-ui.js", "tracking.js" ], "css": [ "styles.css", "jquery-ui.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/*.google.com\/", "https:\/\/maps.googleapis.com\/*", "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/", "geolocation", "identity", "identity.email" ], "web_accessible_resources": [ "timezonerow.html", "index.html" ], "manifest_version": 2 } |