GPT Code Reviewer

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

GPT Code Reviewerとは何ですか?

GPT Code Reviewerはhttps://sites.google.com/view/tonychen/my-projects/gpt-code-reviewerによって開発されたChromeの拡張機能で、その主な機能は「This extension enables users to upload files for ChatGPT to analyze and summarize.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

GPT Code Reviewer拡張機能のCRXファイルをダウンロード

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.                    

拡張機能の基本情報

名前 GPT Code Reviewer GPT Code Reviewer
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
Eメール [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"
    ]
}