Github LGTM

Display code review status on github pull requests

Github LGTM क्या है?

Github LGTM Friday Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display code review status on github pull requests"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Github pull requests are amazing for managing feature branches. They allow for an open discussion about the changes where anyone can +1 a request they have reviewed and want to have integrated. However there is no easy way to see and count those up or downvotes, especially in a long-winded discussion in a slightly more formal team-wide code review setup.

Now with the Github LGTM extension you can get the review status of pull requests on github at a glance.

Features:

* Display vote summary on pull request list
* Display vote summary on pull request details
* Disable the merge button when there isn't enough votes on a pull request
* Disable the merge button when a pull request is marked as WIP (by adding WIP to its title)
* Change the amount of votes necessary to merge and keywords
* Display vote count on the favicon on pull request defails page

Source code is available at http://github.com/zaki/lgtm                    

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

नाम Github LGTM Github LGTM
ID cjppnimohipmnginpfcfghchkbpdaioo
आधिकारिक URL https://chromewebstore.google.com/detail/github-lgtm/cjppnimohipmnginpfcfghchkbpdaioo
विवरण Display code review status on github pull requests
फ़ाइल का आकार 84.26 KB
स्थापना संख्या 33
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2016-02-01
प्रकाशन तिथि 2016-01-31
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Friday Inc.
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://github.com/zaki/lgtm
समर्थित भाषाएँ en,hu,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.0",
    "short_name": "LGTM",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "res\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/mustache.js",
                "js\/lgtm.js"
            ],
            "css": [
                "css\/lgtm.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/lgtm.css",
        "templates\/*",
        "js\/pushstate.js",
        "res\/favicon.png"
    ],
    "options_page": "options\/options.html",
    "default_locale": "en"
}