Microsoft Teams Chat Extractor

Pulls out the chat transcript from the Microsoft Teams online interface

O que é Microsoft Teams Chat Extractor?

Microsoft Teams Chat Extractor é uma extensão do Chrome desenvolvida por developer.muschenetz, e sua principal característica é "Pulls out the chat transcript from the Microsoft Teams online interface".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Microsoft Teams Chat Extractor

Baixe arquivos de extensão Microsoft Teams Chat Extractor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Microsoft Teams Chat Extractor Microsoft Teams Chat Extractor
ID fhnkibfmfnbebnhcihmpdbibjgolbifm
URL Oficial https://chromewebstore.google.com/detail/microsoft-teams-chat-extr/fhnkibfmfnbebnhcihmpdbibjgolbifm
Descrição Pulls out the chat transcript from the Microsoft Teams online interface
Tamanho do Arquivo 23.54 KB
Contagem de Instalações 5,511
Versão Atual 1.0
Última Atualização 2021-03-16
Data de Publicação 2021-03-15
Classificação 1.09/5 Total de 23 Avaliações
Desenvolvedor developer.muschenetz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ingo/microsoft-teams-chat-extractor
URL da Página de Ajuda https://github.com/ingo/microsoft-teams-chat-extractor
Idiomas Suportados 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"
    }
}