Gmail character counter
Write 280 characters emails in Gmail
Gmail character counter là gì?
Gmail character counter là một tiện ích mở rộng Chrome được phát triển bởi SUMMARLY, và tính năng chính của nó là "Write 280 characters emails in Gmail".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gmail character counter
Tải xuống các tệp mở rộng Gmail character counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hkljcfbhfaloimepenpiohkfgjfkfmoa |
URL Chính Thức | https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa |
Mô tả | Write 280 characters emails in Gmail |
Kích Thước Tệp | 136 KB |
Số Lần Cài Đặt | 213 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2020-02-09 |
Ngày Phát Hành | 2020-02-09 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | SUMMARLY |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://summarly.com |
URL Trang Trợ Giúp | https://summarly.com/support/ |
URL Trang Chính Sách Bảo Mật | http://summarly.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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 } |