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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}