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文件

下载ProjectGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        "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'"
    }
}