Packmind for Code Review

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

什么是Packmind for Code Review?

Packmind for Code Review是由Promyze开发的Chrome扩展程序,该扩展的主要功能是“Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Packmind for Code Review扩展crx文件

下载Packmind for Code Review扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Packmind for Code Review Packmind for Code Review
ID oboemiockcgekjobilpopcfpepdojbog
官方URL https://chromewebstore.google.com/detail/packmind-for-code-review/oboemiockcgekjobilpopcfpepdojbog
简介 Skyrocket your code review experience with all Packmind capabilities (ex-Promyze)
文件大小 1.77 MB
安装次数 537
当前版本 4.0.2
更新时间 2024-03-05
上架时间 2021-02-20
评分 5.00/5 共3次评分
开发者 Promyze
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.packmind.com/
帮助页面URL https://docs.packmind.com/what-is-packmind
隐私政策页面URL https://www.promyze.com/privacy-policy
支持的语言 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"
        }
    ]
}