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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ** 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
}