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
Eメール [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'"
    }
}