Microsoft Teams Chat Extractor

Pulls out the chat transcript from the Microsoft Teams online interface

Microsoft Teams Chat Extractor là gì?

Microsoft Teams Chat Extractor là một tiện ích mở rộng Chrome được phát triển bởi developer.muschenetz, và tính năng chính của nó là "Pulls out the chat transcript from the Microsoft Teams online interface".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Microsoft Teams Chat Extractor

Tải xuống các tệp mở rộng Microsoft Teams Chat Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Microsoft Teams Chat Extractor Microsoft Teams Chat Extractor
ID fhnkibfmfnbebnhcihmpdbibjgolbifm
URL Chính Thức https://chromewebstore.google.com/detail/microsoft-teams-chat-extr/fhnkibfmfnbebnhcihmpdbibjgolbifm
Mô tả Pulls out the chat transcript from the Microsoft Teams online interface
Kích Thước Tệp 23.54 KB
Số Lần Cài Đặt 5,511
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-03-16
Ngày Phát Hành 2021-03-15
Đánh Giá 1.09/5 Tổng số 23 Đánh Giá
Nhà Phát Triển developer.muschenetz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ingo/microsoft-teams-chat-extractor
URL Trang Trợ Giúp https://github.com/ingo/microsoft-teams-chat-extractor
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}