Packmind for Code Review

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

ما هو Packmind for Code Review؟

Packmind for Code Review هو إضافة Chrome تم تطويرها بواسطة Promyze، والميزة الرئيسية لها هي "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Packmind for Code Review

قم بتنزيل ملفات الامتداد Packmind for Code Review بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة https://docs.packmind.com/what-is-packmind
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}