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. 扩展基本信息
| 名称 | |
| 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"
]
} | |