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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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": [
                ""
            ]
        }
    ]
}