Packmind for Code Review

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

Cos'è Packmind for Code Review?

Packmind for Code Review è un'estensione di Chrome sviluppata da Promyze, e la sua funzione principale è "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Packmind for Code Review

Scarica i file di estensione Packmind for Code Review in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
URL Ufficiale https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
Descrizione Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
Dimensione del File 1.77 MB
Conteggio Installazioni 537
Versione Corrente 4.0.2
Ultimo Aggiornamento 2024-03-05
Data di Pubblicazione 2021-02-20
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Promyze
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.packmind.com/
URL della Pagina di Aiuto https://docs.packmind.com/what-is-packmind
URL della Pagina della Politica sulla Privacy https://www.promyze.com/privacy-policy
Lingue Supportate 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"
        }
    ]
}