Packmind for Code Review

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

Was ist Packmind for Code Review?

Packmind for Code Review ist eine Chrome-Erweiterung, die von Promyze entwickelt wurde, und ihr Hauptmerkmal ist "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Packmind for Code Review-Erweiterungs-CRX-Datei herunterladen

Laden Sie Packmind for Code Review-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
Offizielle URL https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
Beschreibung Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
Dateigröße 1.77 MB
Installationsanzahl 537
Aktuelle Version 4.0.2
Letztes Update 2024-03-05
Veröffentlichungsdatum 2021-02-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Promyze
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.packmind.com/
Hilfeseite URL https://docs.packmind.com/what-is-packmind
URL der Datenschutzrichtlinien-Seite https://www.promyze.com/privacy-policy
Unterstützte Sprachen 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"
        }
    ]
}