BrowseGPT

Automate your browser with artificial intelligence.

BrowseGPT란 무엇입니까?

BrowseGPT은(는) https://browsegpt.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate your browser with artificial intelligence."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Give BrowseGPT instructions like "Find a place to stay in Seattle on February 22nd" or "buy a children's book on Amazon", and it will use artificial intelligence to attempt to complete the task for you. BrowseGPT uses OpenAI's GPT-3 model to process web pages and issue commands like CLICK, ENTER_TEXT or NAVIGATE.

Is it useful? Sort of... sometimes it will get stuck in a loop, click on the wrong thing, or navigate to a URL that 404s. It provides a reason for every decision it makes so you can help it correct course if necessary.

⚠️ This is an experimental extension and should be used with caution. Don't use this on pages with private information, or pages where taking the wrong action could cause a serious problem. ⚠️                    

확장 프로그램 기본 정보

이름 BrowseGPT BrowseGPT
ID gpcljmgannpkbohdomdibbbngpphkemd
공식 URL https://chromewebstore.google.com/detail/browsegpt/gpcljmgannpkbohdomdibbbngpphkemd
설명 Automate your browser with artificial intelligence.
파일 크기 3.37 MB
설치 횟수 1,620
현재 버전 2.0
최근 업데이트 2023-03-21
출시 날짜 2023-01-28
평점 4.00/5 총 5 개의 평점
개발자 https://browsegpt.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://browsegpt.ai
도움말 페이지 URL https://browsegpt.ai
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BrowseGPT",
    "description": "Automate your browser with artificial intelligence.",
    "version": "2.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}