GPT Anywhere

Get GPT completions on any webpage.

GPT Anywhere란 무엇입니까?

GPT Anywhere은(는) hotspringsclap에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get GPT completions on any webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Free OpenAI GPT tool to generate text and input it from any webpage :
1. Save your usual favorite prompts
2. Right-click anywhere on the web
3. Done, GPT is now writing what you want for you

This is ChatGPT at your fingertips.


100% open source. No data collected by the extension.                    

확장 프로그램 기본 정보

이름 GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
공식 URL https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
설명 Get GPT completions on any webpage.
파일 크기 159 KB
설치 횟수 404
현재 버전 1.2.0
최근 업데이트 2023-04-25
출시 날짜 2023-02-20
평점 5.00/5 총 5 개의 평점
개발자 hotspringsclap
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/CheeseDurger/gpt-anywhere
도움말 페이지 URL https://github.com/CheeseDurger/gpt-anywhere/issues/new
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Anywhere",
    "description": "Get GPT completions on any webpage.",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/icon-16px.png",
        "32": "icons\/icon-32px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "action": {
        "default_title": "Go to this extension's Options to configure your GPT prompts"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/start.js"
            ]
        }
    ]
}