Microsoft Teams Chat Extractor

Pulls out the chat transcript from the Microsoft Teams online interface

Что такое Microsoft Teams Chat Extractor?

Microsoft Teams Chat Extractor - это расширение Chrome, разработанное developer.muschenetz, и его основная функция - "Pulls out the chat transcript from the Microsoft Teams online interface".

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

screenshot

Скачать файл CRX расширения Microsoft Teams Chat Extractor

Скачайте файлы расширений Microsoft Teams Chat Extractor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Microsoft Teams does not have a native export functionality for chats. This extension pulls data from the web version for the currently selected chat and the transcript can be copied and pasted elsewhere.

1. Log into Microsoft Teams on the web (https://teams.microsoft.com)
2. Go to the chat you wish to extract. Note that it only will extract the content that's loaded, so if you want a longer history, scroll upwards in your chat history until you've loaded all the content you like
3. Press the little purple chat button. A popup will appear with the content included
4. Copy and paste into whatever form you like.                    

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

Название Microsoft Teams Chat Extractor Microsoft Teams Chat Extractor
ID fhnkibfmfnbebnhcihmpdbibjgolbifm
Официальный URL https://chromewebstore.google.com/detail/microsoft-teams-chat-extr/fhnkibfmfnbebnhcihmpdbibjgolbifm
Описание Pulls out the chat transcript from the Microsoft Teams online interface
Размер файла 23.54 KB
Количество установок 5,511
Текущая Версия 1.0
Последнее Обновление 2021-03-16
Дата публикации 2021-03-15
Рейтинг 1.09/5 Всего 23 оценок
Разработчик developer.muschenetz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ingo/microsoft-teams-chat-extractor
URL страницы помощи https://github.com/ingo/microsoft-teams-chat-extractor
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Microsoft Teams Chat Extractor",
    "description": "Pulls out the chat transcript from the Microsoft Teams online interface",
    "version": "1.0",
    "author": "Ingo Muschenetz",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "permissions": [],
    "browser_action": {
        "default_icon": "icons\/chat-32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icons\/chat-32.png",
        "48": "icons\/chat-48.png",
        "128": "icons\/chat-128.png"
    }
}