Gmail Summarization
Email summarization, read what's important.
Gmail Summarizationとは何ですか?
Gmail Summarizationはhttp://summarly.comによって開発されたChromeの拡張機能で、その主な機能は「Email summarization, read what's important.」です。
拡張機能のスクリーンショット
Gmail Summarization拡張機能のCRXファイルをダウンロード
Gmail Summarization拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
An AI–powered reading assistant, that works for email conversations on Gmail, and helps to automatically summarize email threads and extract insights—highlighting important sentences and, suggesting #labels for categorizing emails. The idea, is to build an email summarizer that helps to automatically summarize email threads, by presenting a paragraph consisting of the most important sentences—these are the sentences that the user must read to get the main point of the email, where for many cases, reading the rest is unnecessary. ** privacy ** we don't store or share data with others, we respect people's data, like we do for our selfs. if you have any questions feel free to get in touch, we would love to get your feedback.
拡張機能の基本情報
名前 | |
ID | lemikfhgbognfmidedogimihofllajni |
公式URL | https://chrome.google.com/webstore/detail/gmail-summarization/lemikfhgbognfmidedogimihofllajni |
説明 | Email summarization, read what's important. |
ファイルサイズ | 57.37 KB |
インストール数 | 113 |
現在のバージョン | 0.1.4 |
最終更新日 | 2019-11-16 |
公開日 | 2019-11-16 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | http://summarly.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://summarly.com |
ヘルプページのURL | https://summarly.com/support/ |
プライバシーポリシーページのURL | http://summarly.ai/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Summarization", "description": "Email summarization, read what's important.", "version": "0.1.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*", "https:\/\/summarly-api.herokuapp.com\/*" ], "js": [ "js\/jquery.js", "inboxsdk.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "lines.png" ], "background": { "scripts": [ "js\/jquery.js", "background.js" ], "persistent": false }, "permissions": [ "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/" ], "manifest_version": 2 } |