Gmail Summarization

Email summarization, read what's important.

Co to jest Gmail Summarization?

Gmail Summarization to rozszerzenie Chrome opracowane przez http://summarly.com, a jego główną funkcją jest „Email summarization, read what's important.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail Summarization

Pobierz pliki rozszerzeń Gmail Summarization w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail Summarization Gmail Summarization
ID lemikfhgbognfmidedogimihofllajni
Oficjalny URL https://chrome.google.com/webstore/detail/gmail-summarization/lemikfhgbognfmidedogimihofllajni
Opis Email summarization, read what's important.
Rozmiar pliku 57.37 KB
Liczba instalacji 113
Aktualna Wersja 0.1.4
Ostatnia Aktualizacja 2019-11-16
Data Publikacji 2019-11-16
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper http://summarly.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://summarly.com
Adres URL Strony Pomocy https://summarly.com/support/
Adres URL Strony Polityki Prywatności http://summarly.ai/privacy
Obsługiwane Języki 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
}