smartGPT Multi-Tab Extension

A Chrome extension to interact with ChatGPT across multiple tabs

smartGPT Multi-Tab Extension란 무엇입니까?

smartGPT Multi-Tab Extension은(는) The Jade Authors에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to interact with ChatGPT across multiple tabs"입니다.

확장 프로그램 스크린샷

screenshot

smartGPT Multi-Tab Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The smartGPT Multi-Tab Resolver is a Chrome extension that allows users to interact with ChatGPT across multiple tabs to get more refined answers to their questions. 

This follows some of the ideas in "An automatically discovered chain-of-thought prompt generalizes to novel models and datasets"  Hebenstreit, Praas, Kiesewetter, Samwald.  The name was coined by the Youtube channel AI Explained.

We intend to develop this project to allow a wide selection of AI models, including but not limited to Vicuna and other Llama based models.

The project is open source and its Github page is here:
https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension                    

확장 프로그램 기본 정보

이름 smartGPT Multi-Tab Extension smartGPT Multi-Tab Extension
ID pinboagpmeoickkeeaghhbicpbjpeaba
공식 URL https://chromewebstore.google.com/detail/smartgpt-multi-tab-extens/pinboagpmeoickkeeaghhbicpbjpeaba
설명 A Chrome extension to interact with ChatGPT across multiple tabs
파일 크기 29.63 KB
설치 횟수 37
현재 버전 1.1
최근 업데이트 2023-05-13
출시 날짜 2023-05-11
개발자 The Jade Authors
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "smartGPT Multi-Tab Extension",
    "version": "1.1",
    "description": "A Chrome extension to interact with ChatGPT across multiple tabs",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}