GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Wat is GPT Code Reviewer?
GPT Code Reviewer is een Chrome-extensie ontwikkeld door https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, en de belangrijkste functie is "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Extensie Screenshots
Download het CRX-bestand van de extensie GPT Code Reviewer
Download GPT Code Reviewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Officiële URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Beschrijving | This extension enables users to upload files for ChatGPT to analyze and summarize. |
| Bestandsgrootte | 24.96 KB |
| Aantal Installaties | 710 |
| Huidige Versie | 3.4 |
| Laatst Bijgewerkt | 2024-03-01 |
| Publicatiedatum | 2023-04-15 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| Help Pagina-URL | https://sites.google.com/view/bookai |
| URL van de Privacybeleid Pagina | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
| Ondersteunde Talen | 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"
]
} | |