LGTM

Set your default PR review on github

什麼是LGTM?

LGTM是由wateret開發的Chrome擴展程式,該擴展的主要功能是“Set your default PR review on github”。

擴展截圖

screenshot
screenshot

下載LGTM擴展crx文件

下載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
官方網址 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
}