summarize.me — Gmail Summarizer
A chrome extension that shortens long emails into concise summaries.
summarize.me — Gmail Summarizerとは何ですか?
summarize.me — Gmail SummarizerはAdi Yeltayによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension that shortens long emails into concise summaries.」です。
拡張機能のスクリーンショット
summarize.me — Gmail Summarizer拡張機能のCRXファイルをダウンロード
summarize.me — Gmail Summarizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you are tired of reading long and boring emails and missing important information in emails, use summarize.me! How to use it? ✓ Simply select the portion of the email that you want to shorten ✓ Go to the summarize.me extension button ✓ Click "Summarize" in the popup ✓ See the result inside the extension popup! YouTube guide: https://youtu.be/_qI4VMpRPEE [IMPORTANT NOTE] - summarize.me extension currently supports only chromium-based browsers such as Chrome and Brave. - summarize.me shortens emails based on extractive summarization principle! This means that the extension will not paraphrase or change the meaning of emails, but rather extracts key sentences from the given email. - summarize.me works perfectly with English language. Unfortunately, the application doesn't work flawlessly with other languages. [WHAT'S NEW?] Update 1.0.0 - Now, you are able to use the summarize.me features right inside the Gmail application with no need to open the extension popup constantly. To use this feature, simply open the extension once before you session, and enjoy this feature!
拡張機能の基本情報
名前 | summarize.me — Gmail Summarizer |
ID | kgbcbbbcmkfnpebdllbppcofhmfeabol |
公式URL | https://chromewebstore.google.com/detail/summarizeme-%E2%80%94-gmail-summa/kgbcbbbcmkfnpebdllbppcofhmfeabol |
説明 | A chrome extension that shortens long emails into concise summaries. |
ファイルサイズ | 210 KB |
インストール数 | 285 |
現在のバージョン | 1.0.0 |
最終更新日 | 2022-08-09 |
公開日 | 2022-07-12 |
評価 | 4.20/5 合計 5 レビュー |
開発者 | Adi Yeltay |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://summarizeme.vercel.app |
プライバシーポリシーページのURL | https://www.privacypolicygenerator.info/live.php?token=WpnJKcVoaeTkPYGFMseDYVxma11fUwVT |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "summarize.me \u2014 Gmail Summarizer", "version": "1.0.0", "description": "A chrome extension that shortens long emails into concise summaries.", "manifest_version": 3, "author": "Adi Yeltay", "permissions": [ "storage", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html", "default_title": "summarize.me" }, "icons": { "16": "summarizelogo.png", "48": "summarizelogo.png", "128": "summarizelogo.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "contentScript.js" ] } ] } |