codereview.gpt

Reviews your Pull Requests using ChatGPT so that you can pretend to work

codereview.gptคืออะไร?

codereview.gpt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kiril และคุณลักษณะหลักของมันคือ "Reviews your Pull Requests using ChatGPT so that you can pretend to work"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย codereview.gpt

ดาวน์โหลดไฟล์ส่วนขยาย codereview.gpt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Review GitHub Pull Requests or GitLab Merge Requests using ChatGPT.

Introducing codereview.gpt — your AI code reviewer. This extension allows you to get feedback on any Pull Request and possibly catch bugs you didn't see.

How does it work? Navigate to a specific PR and click the extension icon — you will then get review comments in the pop-up window (see screenshots).

FAQ

Q: Are the reviews 100% trustworthy?
A: Nope, as of 2022. This tool can help you spot bugs, but as with anything, use your judgement.

Q: What aspects of the Pull Request are considered during the review?
A: The model gets the code changes, the PR title and description, as well as a list of the files and folders in the root of the project.

Q: Does the extension leave any comments on the Pull Request?
A: No. If you want any of the feedback as PR comments, you can just copy paste the output.

Q: Why do you want this?
A: Plenty of reasons! You can:
     - Pretend to work while playing games instead
     - Appear smart to your colleagues
     - Enable a future Skynet
     - Actually catch some bugs you missed

This extension is free and open source — https://github.com/sturdy-dev/codereview.gpt                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ codereview.gpt codereview.gpt
ID amdfidcajdihmbhmmgohhkoaijpkocdn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codereviewgpt/amdfidcajdihmbhmmgohhkoaijpkocdn
คำอธิบาย Reviews your Pull Requests using ChatGPT so that you can pretend to work
ขนาดไฟล์ 1.29 MB
จำนวนการติดตั้ง 1,172
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2023-06-08
วันที่เผยแพร่ 2022-12-14
คะแนน 2.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา kiril
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sturdy-dev/codereview.gpt
URL หน้าช่วยเหลือ https://github.com/sturdy-dev/codereview.gpt/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/sturdy-dev/codereview.gpt/tree/main/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "name": "codereview.gpt",
    "version": "0.3.0",
    "description": "Reviews your Pull Requests using ChatGPT so that you can pretend to work",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "codereview.gpt",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "host_permissions": [
        "https:\/\/*.githubusercontent.com\/",
        "https:\/\/gitlab.com\/"
    ],
    "optional_host_permissions": [
        "https:\/\/*\/*"
    ]
}