GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
什麼是GPT Code Reviewer?
GPT Code Reviewer是由https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer開發的Chrome擴展程式,該擴展的主要功能是“This extension enables users to upload files for ChatGPT to analyze and summarize.”。
擴展截圖
下載GPT Code Reviewer擴展crx文件
下載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 |
官方網址 | 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" ] } |