Packmind for Code Review
Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
Hvad er Packmind for Code Review?
Packmind for Code Review er en Chrome-udvidelse udviklet af Promyze, og dens hovedfunktion er "Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)".
Udvidelsesskærmbilleder
Download Packmind for Code Review-udvidelses-CRX-fil
Download Packmind for Code Review-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Packmind for Code Review |
ID | oboemiockcgekjobilpopcfpepdojbog |
Officiel URL | https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog |
Beskrivelse | Skyrocket your code review experience with all Packmind capabilities (ex-Promyze) |
Filstørrelse | 1.77 MB |
Antal Installationer | 537 |
Nuværende Version | 4.0.2 |
Senest Opdateret | 2024-03-05 |
Udgivelsesdato | 2021-02-20 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | Promyze |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.packmind.com/ |
Hjælpeside-URL | https://docs.packmind.com/what-is-packmind |
URL til Fortrolighedspolitik Side | https://www.promyze.com/privacy-policy |
Understøttede Sprog | 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" } ] } |