GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
O que é GPT Code Reviewer?
GPT Code Reviewer é uma extensão do Chrome desenvolvida por https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, e sua principal característica é "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GPT Code Reviewer
Baixe arquivos de extensão GPT Code Reviewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
URL Oficial | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Descrição | This extension enables users to upload files for ChatGPT to analyze and summarize. |
Tamanho do Arquivo | 24.96 KB |
Contagem de Instalações | 710 |
Versão Atual | 3.4 |
Última Atualização | 2024-03-01 |
Data de Publicação | 2023-04-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
URL da Página de Ajuda | https://sites.google.com/view/bookai |
URL da Página de Política de Privacidade | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
Idiomas Suportados | 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" ] } |