Packmind for Code Review

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

Packmind for Code Review là gì?

Packmind for Code Review là một tiện ích mở rộng Chrome được phát triển bởi Promyze, và tính năng chính của nó là "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Packmind for Code Review

Tải xuống các tệp mở rộng Packmind for Code Review dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
URL Chính Thức https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
Mô tả Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
Kích Thước Tệp 1.77 MB
Số Lần Cài Đặt 537
Phiên Bản Hiện Tại 4.0.2
Cập Nhật Lần Cuối 2024-03-05
Ngày Phát Hành 2021-02-20
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Promyze
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.packmind.com/
URL Trang Trợ Giúp https://docs.packmind.com/what-is-packmind
URL Trang Chính Sách Bảo Mật https://www.promyze.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}