GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Что такое GPT Code Reviewer?
GPT Code Reviewer - это расширение Chrome, разработанное https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, и его основная функция - "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Снимки экрана расширения
Скачать файл CRX расширения GPT Code Reviewer
Скачайте файлы расширений GPT Code Reviewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Официальный URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
| Описание | This extension enables users to upload files for ChatGPT to analyze and summarize. |
| Размер файла | 24.96 KB |
| Количество установок | 710 |
| Текущая Версия | 3.4 |
| Последнее Обновление | 2024-03-01 |
| Дата публикации | 2023-04-15 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
| URL страницы помощи | https://sites.google.com/view/bookai |
| URL страницы политики конфиденциальности | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
| Поддерживаемые языки | 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"
]
} | |