Gmail character counter
Write 280 characters emails in Gmail
Qu'est-ce que Gmail character counter ?
Gmail character counter est une extension Chrome développée par SUMMARLY, et sa fonction principale est "Write 280 characters emails in Gmail".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail character counter
Téléchargez les fichiers d'extension Gmail character counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | |
ID | hkljcfbhfaloimepenpiohkfgjfkfmoa |
URL Officiel | https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa |
Description | Write 280 characters emails in Gmail |
Taille du Fichier | 136 KB |
Nombre d'Installations | 213 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-02-09 |
Date de Publication | 2020-02-09 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | SUMMARLY |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://summarly.com |
URL de la Page d'Aide | https://summarly.com/support/ |
URL de la Page de Politique de Confidentialité | http://summarly.com/privacy |
Langues Prises en Charge | 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 } |