Microsoft Teams Chat Extractor

Pulls out the chat transcript from the Microsoft Teams online interface

Microsoft Teams Chat Extractor란 무엇입니까?

Microsoft Teams Chat Extractor은(는) developer.muschenetz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pulls out the chat transcript from the Microsoft Teams online interface"입니다.

확장 프로그램 스크린샷

screenshot

Microsoft Teams Chat Extractor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}