Beezy

A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.

Beezyคืออะไร?

Beezy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Beezy และคุณลักษณะหลักของมันคือ "A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        An extension which makes your voice a todolist, so you don't have to. This extension is a Google Meet extension which takes your voice and specifically figures out which is a task and which is not. This way everyone in the meeting is productive and not worrying about the pointers from the meeting or about noting down what was discussed.                    

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

ชื่อ Beezy Beezy
ID cmckflkdkbaebjihlhmghhhkgapkgjek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/beezy/cmckflkdkbaebjihlhmghhhkgapkgjek
คำอธิบาย A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.
ขนาดไฟล์ 3.19 MB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-08-10
วันที่เผยแพร่ 2022-08-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Beezy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bit.ly/Beezy-Extension
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Beezy",
    "description": "A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.",
    "version": "1.0",
    "action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}