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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://sites.google.com/view/bookai |
عنوان صفحة سياسة الخصوصية | 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" ] } |