GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Cos'è GPT Code Reviewer?
GPT Code Reviewer è un'estensione di Chrome sviluppata da https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, e la sua funzione principale è "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GPT Code Reviewer
Scarica i file di estensione GPT Code Reviewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
URL Ufficiale | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Descrizione | This extension enables users to upload files for ChatGPT to analyze and summarize. |
Dimensione del File | 24.96 KB |
Conteggio Installazioni | 710 |
Versione Corrente | 3.4 |
Ultimo Aggiornamento | 2024-03-01 |
Data di Pubblicazione | 2023-04-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
URL della Pagina di Aiuto | https://sites.google.com/view/bookai |
URL della Pagina della Politica sulla Privacy | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
Lingue Supportate | 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" ] } |