BrowserGPT

A ChatGPT agent directly in your browser

BrowserGPT란 무엇입니까?

BrowserGPT은(는) chriszhu12에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A ChatGPT agent directly in your browser"입니다.

확장 프로그램 스크린샷

screenshot

BrowserGPT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        BrowserGPT lets you have a ChatGPT directly in your browser, letting you access ChatGPT as your surf the web.

✅ Access ChatGPT without changing tabs
✅ ChatGPT will read and summarize what you're reading
✅ Automatically compose emails, blog posts, and more

The best part? It's entirely open source and free!                    

확장 프로그램 기본 정보

이름 BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
공식 URL https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
설명 A ChatGPT agent directly in your browser
파일 크기 614 KB
설치 횟수 1,539
현재 버전 5.0.6
최근 업데이트 2023-06-16
출시 날짜 2023-05-15
평점 4.00/5 총 4 개의 평점
개발자 chriszhu12
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.browsergpt.app/
도움말 페이지 URL https://www.browsergpt.app/
개인정보 보호 정책 페이지 URL https://www.browsergpt.app/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A ChatGPT agent directly in your browser",
    "version": "5.0.6",
    "manifest_version": 3,
    "name": "BrowserGPT",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}