Packmind for Code Review

Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)

Packmind for Code Review란 무엇입니까?

Packmind for Code Review은(는) Promyze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Packmind for Code Review 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Identify best/bad practices during your code reviews, discuss them with your team to define together the best practices adapted to your context. Packmind helps teams to improve code quality and maintainability.

Moreover, the Packmind extension allows you to display all your best practices directly in your browser to use theme as a checklist for code review.                    

확장 프로그램 기본 정보

이름 Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
공식 URL https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
설명 Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
파일 크기 1.77 MB
설치 횟수 537
현재 버전 4.0.2
최근 업데이트 2024-03-05
출시 날짜 2021-02-20
평점 5.00/5 총 3 개의 평점
개발자 Promyze
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.packmind.com/
도움말 페이지 URL https://docs.packmind.com/what-is-packmind
개인정보 보호 정책 페이지 URL https://www.promyze.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Packmind for Code Review",
    "version": "4.0.2",
    "description": "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "browser-polyfill.js.map",
        "popup\/popup.html",
        "contentscript\/css\/contentscript.css",
        "contentscript\/img\/*",
        "contentscript\/css\/*",
        "contentscript\/fonts\/*"
    ],
    "icons": {
        "128": ".\/packmind.png"
    },
    "browser_action": {
        "default_title": "Packmind",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "index.js"
        ]
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*merge_requests*",
                "*:\/\/*\/*pull*",
                "*:\/\/*.github.com\/*",
                "*:\/\/*\/*reviews*"
            ],
            "js": [
                "browser-polyfill.js",
                "codeReviewDecoration.js"
            ],
            "css": [
                "contentscript\/css\/contentscript.css"
            ],
            "run_at": "document_idle"
        }
    ]
}