LGTM reloaded

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

LGTM reloaded là gì?

LGTM reloaded là một tiện ích mở rộng Chrome được phát triển bởi https://www.mediavrog.net, và tính năng chính của nó là "Use a keyboard shortcut to LGTM! pull requests in seconds.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LGTM reloaded

Tải xuống các tệp mở rộng LGTM reloaded dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LGTM reloaded LGTM reloaded
ID hefidgcceobmmaiekccmbjpdcmbjklej
URL Chính Thức https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej
Mô tả Use a keyboard shortcut to LGTM! pull requests in seconds.
Kích Thước Tệp 75.62 KB
Số Lần Cài Đặt 72
Phiên Bản Hiện Tại 1.4.2
Cập Nhật Lần Cuối 2020-10-21
Ngày Phát Hành 2019-05-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.mediavrog.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.mediavrog.net/projects/lgtm/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}