GitHub Code Review Helper

This extension Helps code review on GitHub

GitHub Code Review Helper क्या है?

GitHub Code Review Helper moshe.zemah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension Helps code review on GitHub"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GitHub Code Review Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension helps the reviewer by adding a files tree left to the files diff in github. 
This way you can easily navigate to files, mark them as "Done", collapse/expand all files...

Other useful feature: 
 - Make the files header sticky (so when scrolling you always see which files are you looking at)
 - When in the conversation part of the Pull request, jump directly to the "Checks" part instead of scrolling all the way down (on key press)
 - "Checks" list is higher (so you won't need to scroll inside it
 - Jump to next/previous diff file
 - Jump to next/previous code review comment
 - Under "Files changed" tab - navigate to conversation tab with a single key stroke (no need to scroll all the way up)                    

एक्सटेंशन की मूल जानकारी

नाम GitHub Code Review Helper GitHub Code Review Helper
ID pnklichompgfnakhgfoakpebjaidlpdk
आधिकारिक URL https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk
विवरण This extension Helps code review on GitHub
फ़ाइल का आकार 455 KB
स्थापना संख्या 74
वर्तमान संस्करण 2.3.3
अंतिम अपडेट 2020-12-10
प्रकाशन तिथि 2020-04-06
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर moshe.zemah
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Code Review Helper",
    "description": "This extension Helps code review on GitHub",
    "version": "2.3.3",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.js",
                "src\/main\/AppInteractionService.js",
                "src\/main\/DecorationService.js",
                "src\/main\/HierarchyGeneratorService.js",
                "src\/main\/HotKeysService.js",
                "src\/main\/LocalStorageService.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "icons\/file-icon-classic.css",
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg",
        "icons\/classic\/*.svg"
    ]
}