GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Hvad er GPT Code Reviewer?
GPT Code Reviewer er en Chrome-udvidelse udviklet af https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, og dens hovedfunktion er "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Udvidelsesskærmbilleder
Download GPT Code Reviewer-udvidelses-CRX-fil
Download GPT Code Reviewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Officiel URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Beskrivelse | This extension enables users to upload files for ChatGPT to analyze and summarize. |
Filstørrelse | 24.96 KB |
Antal Installationer | 710 |
Nuværende Version | 3.4 |
Senest Opdateret | 2024-03-01 |
Udgivelsesdato | 2023-04-15 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
Hjælpeside-URL | https://sites.google.com/view/bookai |
URL til Fortrolighedspolitik Side | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
Understøttede Sprog | 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" ] } |