GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Vad är GPT Code Reviewer?
GPT Code Reviewer är en Chrome-tillägg utvecklad av https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, och dess huvudfunktion är "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Tilläggsskärmbilder
Ladda ner GPT Code Reviewer-förlängningens CRX-fil
Ladda ner GPT Code Reviewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Officiell webbadress | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Beskrivning | This extension enables users to upload files for ChatGPT to analyze and summarize. |
| Filstorlek | 24.96 KB |
| Antal Installationer | 710 |
| Aktuell Version | 3.4 |
| Senast Uppdaterad | 2024-03-01 |
| Publiceringsdatum | 2023-04-15 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| Hjälpsida URL | https://sites.google.com/view/bookai |
| URL till Sekretesspolicy Sidan | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
| Stödda Språk | 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"
]
} | |