Packmind for Code Review

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

What is Packmind for Code Review?

Packmind for Code Review is a Chrome extension developed by Promyze, and its main feature is "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Packmind for Code Review Extension CRX File

Download Packmind for Code Review extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
Official URL https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
Description Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
File Size 1.77 MB
Installation Count 537
Current Version 4.0.2
Last Updated 2024-03-05
Publish Date 2021-02-20
Rating 5.00/5 Total 3 Ratings
Developer Promyze
Email [email protected]
Payment Type free
Extension Website https://www.packmind.com/
Help Page URL https://docs.packmind.com/what-is-packmind
Privacy Policy Page URL https://www.promyze.com/privacy-policy
Supported Languages 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"
        }
    ]
}