GPT Code Reviewer

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

GPT Code Reviewer là gì?

GPT Code Reviewer là một tiện ích mở rộng Chrome được phát triển bởi https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, và tính năng chính của nó là "This extension enables users to upload files for ChatGPT to analyze and summarize.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPT Code Reviewer

Tải xuống các tệp mở rộng GPT Code Reviewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GPT Code Reviewer GPT Code Reviewer
ID mfebbjnnjjedlmbgpdfpkfmmkghaiboo
URL Chính Thức https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo
Mô tả This extension enables users to upload files for ChatGPT to analyze and summarize.
Kích Thước Tệp 24.96 KB
Số Lần Cài Đặt 710
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2024-03-01
Ngày Phát Hành 2023-04-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer
URL Trang Trợ Giúp https://sites.google.com/view/bookai
URL Trang Chính Sách Bảo Mật https://www.tsg.com.tw/blog-detail34-privacy-policy.htm
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}