Delphi for ChatGPT

Learn with Delphi and ChatGPT

Delphi for ChatGPT란 무엇입니까?

Delphi for ChatGPT은(는) https://meet-delphi.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn with Delphi and ChatGPT"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Delphi for ChatGPT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The first humans to harness A.I. to learn.

Here is a quick overview what this extension does:
*Find techniques, tips & tricks right next to ChatGPT and easily apply prompts with one click. 
*Submit techniques, tips & tricks that you found while using ChatGPT.
*Prompts to ChatGPT and its answers are stored in a database, analyzed and used to improve techniques, tips & tricks.                    

확장 프로그램 기본 정보

이름 Delphi for ChatGPT Delphi for ChatGPT
ID gfebhbhbhnnfmkdekfnioelhoeoapamb
공식 URL https://chromewebstore.google.com/detail/delphi-for-chatgpt/gfebhbhbhnnfmkdekfnioelhoeoapamb
설명 Learn with Delphi and ChatGPT
파일 크기 628 KB
설치 횟수 84
현재 버전 0.4.10
최근 업데이트 2023-04-19
출시 날짜 2023-03-03
평점 5.00/5 총 1 개의 평점
개발자 https://meet-delphi.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.meet-delphi.com
도움말 페이지 URL https://lumpy-background-522.notion.site/Delphi-2256244b4ce34120bc335390401b9da9
개인정보 보호 정책 페이지 URL https://lumpy-background-522.notion.site/Privacy-Policy-716d5884b2394ab4aaf5f31a738c7def
지원되는 언어 en,fr,es,hu,pt-PT,ro,ru,uk,iw,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.4.10",
    "manifest_version": 3,
    "icons": {
        "16": "images\/logo\/logo_16px.png",
        "48": "images\/logo\/logo_48px.png",
        "128": "images\/logo\/logo_128px.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Delphi for Chat GTP"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}