GPT Code Reviewer

This extension enables users to upload files for ChatGPT to analyze and summarize.

Co to jest GPT Code Reviewer?

GPT Code Reviewer to rozszerzenie Chrome opracowane przez https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, a jego główną funkcją jest „This extension enables users to upload files for ChatGPT to analyze and summarize.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GPT Code Reviewer

Pobierz pliki rozszerzeń GPT Code Reviewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GPT Code Reviewer GPT Code Reviewer
ID mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Oficjalny URL https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Opis This extension enables users to upload files for ChatGPT to analyze and summarize.
Rozmiar pliku 24.96 KB
Liczba instalacji 710
Aktualna Wersja 3.4
Ostatnia Aktualizacja 2024-03-01
Data Publikacji 2023-04-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
Adres URL Strony Pomocy https://sites.google.com/view/bookai
Adres URL Strony Polityki Prywatności https://www.tsg.com.tw/blog-detail34-privacy-policy.htm
Obsługiwane Języki 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"
    ]
}