codereview.gpt

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

codereview.gpt란 무엇입니까?

codereview.gpt은(는) kiril에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reviews your Pull Requests using ChatGPT so that you can pretend to work"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

codereview.gpt 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}