GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Was ist GPT Code Reviewer?
GPT Code Reviewer ist eine Chrome-Erweiterung, die von https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer entwickelt wurde, und ihr Hauptmerkmal ist "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Erweiterungsscreenshots
GPT Code Reviewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie GPT Code Reviewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Offizielle URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Beschreibung | This extension enables users to upload files for ChatGPT to analyze and summarize. |
| Dateigröße | 24.96 KB |
| Installationsanzahl | 710 |
| Aktuelle Version | 3.4 |
| Letztes Update | 2024-03-01 |
| Veröffentlichungsdatum | 2023-04-15 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| Hilfeseite URL | https://sites.google.com/view/bookai |
| URL der Datenschutzrichtlinien-Seite | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
| Unterstützte Sprachen | 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"
]
} | |