Packmind for Code Review

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

Wat is Packmind for Code Review?

Packmind for Code Review is een Chrome-extensie ontwikkeld door Promyze, en de belangrijkste functie is "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Packmind for Code Review

Download Packmind for Code Review-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
Officiële URL https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
Beschrijving Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
Bestandsgrootte 1.77 MB
Aantal Installaties 537
Huidige Versie 4.0.2
Laatst Bijgewerkt 2024-03-05
Publicatiedatum 2021-02-20
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Promyze
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.packmind.com/
Help Pagina-URL https://docs.packmind.com/what-is-packmind
URL van de Privacybeleid Pagina https://www.promyze.com/privacy-policy
Ondersteunde Talen 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"
        }
    ]
}