Meet Transcript

Record Google Meet captions, chat messages, and screenshots to Google Docs.

Meet Transcriptคืออะไร?

Meet Transcript เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thanesh.dev และคุณลักษณะหลักของมันคือ "Record Google Meet captions, chat messages, and screenshots to Google Docs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Meet Transcript

ดาวน์โหลดไฟล์ส่วนขยาย Meet Transcript ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features
1. Automatically save live meeting captions.
2. Saves chat messages when the right sidebar is open.
3. Option to disable transcribing a meeting or portions of it.
4. Option to take screenshots during a meeting.
5. Option to hide captions from appearing on the screen.
6. Transcripts include meeting name, timestamps, and speakers.

Privacy Policy
1. There is no tracking, no telemetry, and no analytics implemented.
2. Storage permission is requested to store user settings and Google Drive access token locally.
3. (Optional) All URLs permission is requested so that the user can take screenshots. See FAQ for technical details.
4. Access to the user's Google Drive account is used to store the transcripts.
5. Recording is performed locally on the user's machine and sent directly to the user's Google Drive account.

Privacy Practices
1. Personally identifiable information, Personal communications, and Website Content - Meet Transcript records your Google Meet captions, chat messages, and screenshots on your computer and sends them directly to your Google Drive account.

Frequently Asked Questions (FAQ)
Question: When I enable "Show screenshot button" in the Meet Transcript settings page, I get a popup requesting permission to "read and change all your data on the websites you visit." Why does it need access to all sites?

Answer: The screenshot feature uses the captureVisibleTab API to take screenshots when requested by the user. The API stipulates that either the "All URLs" or the "ActiveTab" permission is needed. However, the screenshot feature requires the "All URLs" permission because a custom button is created within the Google Meet UI for users to click.

Release Notes
https://thanesh.dev/meet-transcript#release-notes                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Meet Transcript Meet Transcript
ID jkdogkallbmmdhpdjdpmoejkehfeefnb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/meet-transcript/jkdogkallbmmdhpdjdpmoejkehfeefnb
คำอธิบาย Record Google Meet captions, chat messages, and screenshots to Google Docs.
ขนาดไฟล์ 151 KB
จำนวนการติดตั้ง 31,241
เวอร์ชันปัจจุบัน 3.1.11
อัปเดตครั้งล่าสุด 2022-04-13
วันที่เผยแพร่ 2020-08-03
คะแนน 4.12/5 รวมทั้งหมด 82 คะแนน
ผู้พัฒนา https://thanesh.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://thanesh.dev/meet-transcript
URL หน้าช่วยเหลือ https://thanesh.dev/meet-transcript
URL หน้านโยบายความเป็นส่วนตัว https://thanesh.dev/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Meet Transcript",
    "version": "3.1.11",
    "icons": {
        "16": "assets\/icons\/16-on.png",
        "32": "assets\/icons\/32-on.png",
        "48": "assets\/icons\/48-on.png",
        "128": "assets\/icons\/128-on.png"
    },
    "description": "Record Google Meet captions, chat messages, and screenshots to Google Docs.",
    "homepage_url": "https:\/\/thanesh.dev\/meet-transcript",
    "short_name": "Meet Transcript",
    "permissions": [
        "https:\/\/accounts.google.com\/",
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "content_security_policy": "style-src 'self'; script-src 'self'; object-src 'self'",
    "author": "Thanesh Rajandran",
    "minimum_chrome_version": "80",
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/16-off.png",
            "32": "assets\/icons\/32-off.png",
            "48": "assets\/icons\/48-off.png",
            "128": "assets\/icons\/128-off.png"
        },
        "default_title": "Meet Transcript",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "settings.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "css": [
                "assets\/tippy.css"
            ]
        }
    ]
}