ProjectGPT

A Chrome extension to create thousands of Starter Projects with ChatGPT.

ProjectGPT란 무엇입니까?

ProjectGPT은(는) rubixscript에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to create thousands of Starter Projects with ChatGPT."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        "ProjectGPT Project Starter is a dynamic and innovative Google Chrome extension that leverages the power of OpenAI's ChatGPT to assist you in kick-starting your projects. No matter if you're a novice coder looking for a starting point, a student working on a school project, or an experienced developer aiming to explore new areas, our extension can generate a vast array of project ideas across different programming languages and technologies.

From real-time chat applications to facial recognition systems, distributed file storage to traffic management systems, this extension can provide detailed breakdowns of diverse projects, including main functionalities, difficulty levels, and even code snippets.

By harnessing the artificial intelligence capabilities of ChatGPT, the extension makes it easy for users to explore different project scopes in a chat-based interface. It's like having a knowledgeable coding companion ready to guide you through your project creation journey.

So why wait? Install the ProjectGPT Project Starter extension and let your coding adventure begin."                    

확장 프로그램 기본 정보

이름 ProjectGPT ProjectGPT
ID ffdhhmpjimopeehfajpdkfilaoekncpd
공식 URL https://chromewebstore.google.com/detail/projectgpt/ffdhhmpjimopeehfajpdkfilaoekncpd
설명 A Chrome extension to create thousands of Starter Projects with ChatGPT.
파일 크기 3.8 MB
설치 횟수 23
현재 버전 1.3
최근 업데이트 2023-07-24
출시 날짜 2023-05-13
평점 5.00/5 총 1 개의 평점
개발자 rubixscript
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ProjectGPT",
    "version": "1.3",
    "description": "A Chrome extension to create thousands of Starter Projects with ChatGPT.",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "512": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}