ChadView

Record audio from your computer in real-time and get answers from ChatGPT in your browser

Cos'è ChadView?

ChadView è un'estensione di Chrome sviluppata da https://chadview.com, e la sua funzione principale è "Record audio from your computer in real-time and get answers from ChatGPT in your browser".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ChadView

Scarica i file di estensione ChadView in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ChatGPT meeting assistant. Real-time answers during online meetings. Run our extension during your Zoom/Google Meet/Teams call. It listens to your meeting in real-time and answers any questions instantly.                    

Informazioni di Base sull'Estensione

Nome ChadView ChadView
ID abdljfgddilapkcefolbagomojjkkhih
URL Ufficiale https://chromewebstore.google.com/detail/chadview/abdljfgddilapkcefolbagomojjkkhih
Descrizione Record audio from your computer in real-time and get answers from ChatGPT in your browser
Dimensione del File 323 KB
Conteggio Installazioni 1,045
Versione Corrente 0.0.4
Ultimo Aggiornamento 2023-10-10
Data di Pubblicazione 2023-04-19
Valutazione 2.14/5 Totale 7 Valutazioni
Sviluppatore https://chadview.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chadview.com/
URL della Pagina di Aiuto https://discord.com/invite/dzKs3v3KaW
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChadView",
    "description": "Record audio from your computer in real-time and get answers from ChatGPT in your browser",
    "version": "0.0.4",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage",
        "tabCapture",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "recorder.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "draggable.js",
                "recorder.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "draggable.js",
                "recorder.js",
                "empty.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "ChadView Chrome Extension",
        "default_popup": "popup_empty.html",
        "default_icon": "chad_tr2.png"
    }
}