ProjectGPT
A Chrome extension to create thousands of Starter Projects with ChatGPT.
ProjectGPTคืออะไร?
ProjectGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rubixscript และคุณลักษณะหลักของมันคือ "A Chrome extension to create thousands of Starter Projects with ChatGPT."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ProjectGPT
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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'" } } |