Concisely: Read Any Email in a Sentence

Concisely generates one sentence summaries of your emails, saving time for busy professionals.

Что такое Concisely: Read Any Email in a Sentence?

Concisely: Read Any Email in a Sentence - это расширение Chrome, разработанное https://tryconcisely.com, и его основная функция - "Concisely generates one sentence summaries of your emails, saving time for busy professionals.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Concisely: Read Any Email in a Sentence

Скачайте файлы расширений Concisely: Read Any Email in a Sentence в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Say goodbye to long and tedious email threads and hello to a concise summary of an entire conversation in just one sentence! Our extension uses AI technology to analyze your gmail threads and provide you with a clear and concise summary that saves you time and helps you stay organized. Concisely is the perfect solution for busy professionals who want to stay on top of their inbox. Try Concisely today and streamline your inbox!                    

Основная информация о расширении

Название Concisely: Read Any Email in a Sentence Concisely: Read Any Email in a Sentence
ID kmjpimnkepldekdikeihglaiiggddhgl
Официальный URL https://chromewebstore.google.com/detail/concisely-read-any-email/kmjpimnkepldekdikeihglaiiggddhgl
Описание Concisely generates one sentence summaries of your emails, saving time for busy professionals.
Размер файла 2.88 MB
Количество установок 451
Текущая Версия 1.3
Последнее Обновление 2024-02-04
Дата публикации 2023-03-05
Рейтинг 4.43/5 Всего 7 оценок
Разработчик https://tryconcisely.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.tryconcisely.com
URL страницы политики конфиденциальности https://www.tryconcisely.com?privacy=true
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Concisely: Read Any Email in a Sentence",
    "description": "Concisely generates one sentence summaries of your emails, saving time for busy professionals.",
    "version": "1.3",
    "icons": {
        "128": "concisely-128.png"
    },
    "action": {
        "default_icon": "concisely-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/extensionInjector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/gmailJsLoader.js",
                "js\/conciselyLoader.js",
                "js\/gmailJsLoader.js.map",
                "open-email.jpeg",
                "concisely-bot.png",
                "concisely-logo.png",
                "styles\/extension.css",
                "styles\/bootstrap.css",
                "styles\/concisely.css",
                "static\/css\/bootstrap.min.css"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/*"
    ],
    "permissions": [
        "identity",
        "storage"
    ],
    "oauth2": {
        "client_id": "420617619795-7101h3n7mni6vtcgdhbk8otn5ej3l56h.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/gmail.readonly"
        ]
    }
}