GPT Code Reviewer

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

Apa itu GPT Code Reviewer?

GPT Code Reviewer adalah ekstensi Chrome yang dikembangkan oleh https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, dan fitur utamanya adalah "This extension enables users to upload files for ChatGPT to analyze and summarize.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GPT Code Reviewer

Unduh file ekstensi GPT Code Reviewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GPT Code Reviewer GPT Code Reviewer
ID mfebbjnnjjedlmbgpdfpkfmmkghaiboo
URL Resmi https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Deskripsi This extension enables users to upload files for ChatGPT to analyze and summarize.
Ukuran File 24.96 KB
Jumlah Instalasi 710
Versi Saat Ini 3.4
Terakhir Diperbarui 2024-03-01
Tanggal Publikasi 2023-04-15
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
URL Halaman Bantuan https://sites.google.com/view/bookai
URL Halaman Kebijakan Privasi https://www.tsg.com.tw/blog-detail34-privacy-policy.htm
Bahasa yang Didukung 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"
    ]
}