GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
What is GPT Code Reviewer?
GPT Code Reviewer is a Chrome extension developed by https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, and its main feature is "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Extension Screenshots
Download GPT Code Reviewer Extension CRX File
Download GPT Code Reviewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Official URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Description | This extension enables users to upload files for ChatGPT to analyze and summarize. |
File Size | 24.96 KB |
Installation Count | 710 |
Current Version | 3.4 |
Last Updated | 2024-03-01 |
Publish Date | 2023-04-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
[email protected] | |
Payment Type | free |
Extension Website | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
Help Page URL | https://sites.google.com/view/bookai |
Privacy Policy Page URL | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
Supported Languages | 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" ] } |