Gmail character counter
Write 280 characters emails in Gmail
Gmail character counterとは何ですか?
Gmail character counterはSUMMARLYによって開発されたChromeの拡張機能で、その主な機能は「Write 280 characters emails in Gmail」です。
拡張機能のスクリーンショット
Gmail character counter拡張機能のCRXファイルをダウンロード
Gmail character counter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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] 拡張機能の基本情報
| 名前 | |
| ID | hkljcfbhfaloimepenpiohkfgjfkfmoa |
| 公式URL | https://chromewebstore.google.com/detail/gmail-character-counter/hkljcfbhfaloimepenpiohkfgjfkfmoa |
| 説明 | Write 280 characters emails in Gmail |
| ファイルサイズ | 136 KB |
| インストール数 | 213 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2020-02-09 |
| 公開日 | 2020-02-09 |
| 評価 | 4.00/5 合計 1 レビュー |
| 開発者 | SUMMARLY |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://summarly.com |
| ヘルプページのURL | https://summarly.com/support/ |
| プライバシーポリシーページのURL | http://summarly.com/privacy |
| 対応言語 | 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
} | |