GPT Code Reviewer

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

Co je GPT Code Reviewer?

GPT Code Reviewer je rozšíření Chrome vyvinuté https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, a jeho hlavní funkcí je „This extension enables users to upload files for ChatGPT to analyze and summarize.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření GPT Code Reviewer

Stáhněte si soubory rozšíření GPT Code Reviewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název GPT Code Reviewer GPT Code Reviewer
ID mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Oficiální URL https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Popis This extension enables users to upload files for ChatGPT to analyze and summarize.
Velikost souboru 24.96 KB
Počet instalací 710
Aktuální Verze 3.4
Poslední Aktualizace 2024-03-01
Datum Vydání 2023-04-15
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
URL Stránky Nápovědy https://sites.google.com/view/bookai
URL Stránky Zásad Ochrany Soukromí https://www.tsg.com.tw/blog-detail34-privacy-policy.htm
Podporované Jazyky 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"
    ]
}