LGTM

Set your default PR review on github

ما هو LGTM؟

LGTM هو إضافة Chrome تم تطويرها بواسطة wateret، والميزة الرئيسية لها هي "Set your default PR review on github".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة LGTM

قم بتنزيل ملفات الامتداد LGTM بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ** Who?
Github users

** What?
A button [LGTM] is inserted beside [Review Changes]. When the button is clicked, it fills "Submit your review" form
- Insert the default review comment
- Check "Approve" radio button

** When?
Review others' pull requests

** Where?
On Github(or Github Enterprise)

** Why?
Prevent Carpal Tunnel Syndrome
Enhance productivity


People are tired of typing "LGTM" and click "approve" button on your review comment. Especially when you review trivial commits or your project has a lot to review. If that is your case, this is the perfect solution for you.

Open source at: https://github.com/wateret/lgtm

% The extension icons are from "https://icons8.com", which are free PNG version.

#Github #Preset #Review                    

معلومات أساسية عن التمديد

الاسم LGTM LGTM
ID pkifelaabllbhdeeekikmlicmclokbfe
عنوان URL الرسمي https://chromewebstore.google.com/detail/lgtm/pkifelaabllbhdeeekikmlicmclokbfe
الوصف Set your default PR review on github
حجم الملف 40.92 KB
عدد التثبيتات 51
النسخة الحالية 1.0
آخر تحديث 2020-12-05
تاريخ النشر 2019-04-03
تقييم 5.00/5 مجموع تقييمات 2
المطور wateret
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LGTM",
    "description": "Set your default PR review on github",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "img\/lgtm-16.png",
        "32": "img\/lgtm-32.png",
        "48": "img\/lgtm-48.png",
        "128": "img\/lgtm-128.png"
    },
    "manifest_version": 2
}