Gmail character counter
Write 280 characters emails in Gmail
O que é Gmail character counter?
Gmail character counter é uma extensão do Chrome desenvolvida por SUMMARLY, e sua principal característica é "Write 280 characters emails in Gmail".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gmail character counter
Baixe arquivos de extensão Gmail character counter 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
We help you write short emails—a few sentences at max, by limiting the number of characters to use when writing in Gmail.
While typing we display a set of counter–how many characters, words and total time spent to write the email.
Features
+ C: Characters
Greater than 280, it turns red–we follow the twitter limit
+ W: Words
Number of words that need less than a minute to be read, a total of 200–greater it turns red
Change log
+ Currently we support one compose at a time, we are working on releasing a fix to support multi-compose
Privacy
+ We don't store or process any data server–side, everything is processed on the client-browser.
If you have any problems or feedback, write to us at [email protected] Informações Básicas da Extensão
| Nome | |
| ID | hkljcfbhfaloimepenpiohkfgjfkfmoa |
| URL Oficial | https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa |
| Descrição | Write 280 characters emails in Gmail |
| Tamanho do Arquivo | 136 KB |
| Contagem de Instalações | 213 |
| Versão Atual | 0.1 |
| Última Atualização | 2020-02-09 |
| Data de Publicação | 2020-02-09 |
| Classificação | 4.00/5 Total de 1 Avaliações |
| Desenvolvedor | SUMMARLY |
| [email protected] | |
| Tipo de Pagamento | free |
| Site da Extensão | https://summarly.com |
| URL da Página de Ajuda | https://summarly.com/support/ |
| URL da Página de Política de Privacidade | http://summarly.com/privacy |
| Idiomas Suportados | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gmail character counter",
"description": "Write 280 characters emails in Gmail",
"version": "0.1",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"js": [
"inboxsdk.js",
"content.js",
"js\/jquery.js",
"js\/compromise.min.js"
],
"css": [
"styles.css"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": "short.png"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
"short.png",
"icon16.png"
],
"permissions": [
"https:\/\/mail.google.com\/",
"https:\/\/inbox.google.com\/"
],
"manifest_version": 2
} | |