GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
GPT Code Reviewerคืออะไร?
GPT Code Reviewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer และคุณลักษณะหลักของมันคือ "This extension enables users to upload files for ChatGPT to analyze and summarize."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT Code Reviewer
ดาวน์โหลดไฟล์ส่วนขยาย GPT Code Reviewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The author is 陳棨煜 (Chi-Yu Chen) in MHCI lab, Dept CSIE, National Formosa University. The GPT Code Reviewer Ext will automatically put multiple project source content into ChatGPT input field with check length. With the prompts: manual, API, parameters,flow chart and review. The GPT Code Reviewer will analyze these code, ans it be your great coding helper.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
คำอธิบาย | This extension enables users to upload files for ChatGPT to analyze and summarize. |
ขนาดไฟล์ | 24.96 KB |
จำนวนการติดตั้ง | 710 |
เวอร์ชันปัจจุบัน | 3.4 |
อัปเดตครั้งล่าสุด | 2024-03-01 |
วันที่เผยแพร่ | 2023-04-15 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
URL หน้าช่วยเหลือ | https://sites.google.com/view/bookai |
URL หน้านโยบายความเป็นส่วนตัว | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Code Reviewer", "version": "3.4", "description": "This extension enables users to upload files for ChatGPT to analyze and summarize.", "icons": { "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "action": { "default_title": "GPT Code Reviewer" }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "tabs" ] } |