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