ChadView

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

ChadViewとは何ですか?

ChadViewはhttps://chadview.comによって開発されたChromeの拡張機能で、その主な機能は「Record audio from your computer in real-time and get answers from ChatGPT in your browser」です。

拡張機能のスクリーンショット

screenshot
screenshot

ChadView拡張機能のCRXファイルをダウンロード

ChadView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 ChadView ChadView
ID abdljfgddilapkcefolbagomojjkkhih
公式URL https://chromewebstore.google.com/detail/chadview/abdljfgddilapkcefolbagomojjkkhih
説明 Record audio from your computer in real-time and get answers from ChatGPT in your browser
ファイルサイズ 323 KB
インストール数 1,045
現在のバージョン 0.0.4
最終更新日 2023-10-10
公開日 2023-04-19
評価 2.14/5 合計 7 レビュー
開発者 https://chadview.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://chadview.com/
ヘルプページのURL https://discord.com/invite/dzKs3v3KaW
対応言語 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"
    }
}