Gmail character counter
Write 280 characters emails in Gmail
Was ist Gmail character counter?
Gmail character counter ist eine Chrome-Erweiterung, die von SUMMARLY entwickelt wurde, und ihr Hauptmerkmal ist "Write 280 characters emails in Gmail".
Erweiterungsscreenshots
Gmail character counter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gmail character counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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]
Grundlegende Informationen zur Erweiterung
Name | |
ID | hkljcfbhfaloimepenpiohkfgjfkfmoa |
Offizielle URL | https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa |
Beschreibung | Write 280 characters emails in Gmail |
Dateigröße | 136 KB |
Installationsanzahl | 213 |
Aktuelle Version | 0.1 |
Letztes Update | 2020-02-09 |
Veröffentlichungsdatum | 2020-02-09 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | SUMMARLY |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://summarly.com |
Hilfeseite URL | https://summarly.com/support/ |
URL der Datenschutzrichtlinien-Seite | http://summarly.com/privacy |
Unterstützte Sprachen | 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 } |