Meeting Recorder

Prompts user to start recording in the Google Meet

Meeting Recorderคืออะไร?

Meeting Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://konary.io และคุณลักษณะหลักของมันคือ "Prompts user to start recording in the Google Meet"

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

screenshot

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

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

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

                        Never forget to record a meeting again with Meeting Recorder. When you host a google meet, you will be prompted to start a recording. If you click yes, the system will start recording with transcription.                    

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

ชื่อ Meeting Recorder Meeting Recorder
ID cddkdlmddflnknpplphmkeilcgojphae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/meeting-recorder/cddkdlmddflnknpplphmkeilcgojphae
คำอธิบาย Prompts user to start recording in the Google Meet
ขนาดไฟล์ 13.6 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-09-28
วันที่เผยแพร่ 2023-09-27
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://konary.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.konary.io/
URL หน้าช่วยเหลือ https://konary.notion.site/Meeting-Record-Support-d67b570dfeb54b0eb33fd197bbd03bf7
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "icons": {
        "128": "logo.png"
    },
    "name": "Meeting Recorder",
    "description": "Prompts user to start recording in the Google Meet",
    "version": "1.1",
    "permissions": [
        "identity",
        "storage",
        "identity.email"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "oauth2": {
        "client_id": "996915766818-cjdi66spkj2pollf1efgvn2k2f4j9v52.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlhWsGZYWj1Bif\/ptUTSBD7Rvdgf0rL3ye5Pt5JR+AU0XxoWd3jr9GyuGkfzC93dKo8YIimImDqoJ8exOclF2qTlBV4AaN7kzcyjSoV5zPMIDco8QJ1drhZ5xAdCLT78oL3IZX+svrHMkmTdjnD+StoIW\/NXPPTzCpwCqHPj3D0sKN4RrXj0TOIHcx\/EkNC3\/DX5sxyq9IDlrcuLFgWLqlk52MWHb7f\/yMqrTs1\/IO0bc4LxMff+7oenwEJjmhVtzd6yVtUh2TKZufTYhdHGcPBT8WhZIRhHlgzBZzjHajGT1BybxpIgL946IoyMcKNPEfs5b+nRC7Ad2P3WwMjGRUwIDAQAB",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    }
}