Beezy

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

Vad är Beezy?

Beezy är en Chrome-tillägg utvecklad av Beezy, och dess huvudfunktion är "A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Beezy-förlängningens CRX-fil

Ladda ner Beezy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Beezy Beezy
ID cmckflkdkbaebjihlhmghhhkgapkgjek
Officiell webbadress https://chromewebstore.google.com/detail/beezy/cmckflkdkbaebjihlhmghhhkgapkgjek
Beskrivning A Chrome Extension that allows users to extract actionable insights from Google Meet's transcripts.
Filstorlek 3.19 MB
Antal Installationer 30
Aktuell Version 1.0
Senast Uppdaterad 2022-08-10
Publiceringsdatum 2022-08-10
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Beezy
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://bit.ly/Beezy-Extension
Stödda Språk 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": [
                ""
            ]
        }
    ]
}