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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension enables users to upload files for ChatGPT to analyze and summarize."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GPT Code Reviewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}