Beezy

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

Hvad er Beezy?

Beezy er en Chrome-udvidelse udviklet af Beezy, og dens hovedfunktion er "A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Beezy-udvidelses-CRX-fil

Download Beezy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Beezy Beezy
ID cmckflkdkbaebjihlhmghhhkgapkgjek
Officiel URL https://chromewebstore.google.com/detail/beezy/cmckflkdkbaebjihlhmghhhkgapkgjek
Beskrivelse A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.
Filstørrelse 3.19 MB
Antal Installationer 30
Nuværende Version 1.0
Senest Opdateret 2022-08-10
Udgivelsesdato 2022-08-10
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Beezy
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://bit.ly/Beezy-Extension
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}