LGTM reloaded

Use a keyboard shortcut to LGTM! pull requests in seconds.

LGTM reloaded क्या है?

LGTM reloaded https://www.mediavrog.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use a keyboard shortcut to LGTM! pull requests in seconds."।

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

screenshot

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

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

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

                        Just click the LGTM button in the address bar or use the shortcut (Alt+L by default) to submit a LGTM, including a random gif to award the PR owner.

Works on github.com pull requests:
* If you are on "Conversation" tab: The plugin will create a comment.
* If you are on "Files changed" review tab: The plugin will "approve" the PR.

If you already have typed some comment into the textarea, the plugin will keep your text and just append the LGTM.
Enjoy your teamwork :)

You can configure the shortcuts in `More tools` > `Extensions` > `Keyboard Shortcuts`.
Icon by http://www.iconarchive.com/show/100-flat-2-icons-by-graphicloads.html                    

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

नाम LGTM reloaded LGTM reloaded
ID hefidgcceobmmaiekccmbjpdcmbjklej
आधिकारिक URL https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej
विवरण Use a keyboard shortcut to LGTM! pull requests in seconds.
फ़ाइल का आकार 75.62 KB
स्थापना संख्या 72
वर्तमान संस्करण 1.4.2
अंतिम अपडेट 2020-10-21
प्रकाशन तिथि 2019-05-17
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर https://www.mediavrog.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.mediavrog.net/projects/lgtm/
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LGTM reloaded",
    "short_name": "LGTM!",
    "version": "1.4.2",
    "manifest_version": 2,
    "description": "Use a keyboard shortcut to LGTM! pull requests in seconds.",
    "homepage_url": "http:\/\/www.mediavrog.net\/projects\/lgtm\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "\/src\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Looks good to me!"
    },
    "commands": {
        "lgtm": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "LGTM! this pull request"
        },
        "lgtm_no_submit": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "LGTM! this pull request (without comment auto-submit)"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/lgtm.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/us-central1-lgtm-reloaded.cloudfunctions.net\/lgtm",
        "https:\/\/github.com\/",
        "declarativeContent"
    ]
}