Approve Pull Request with image

Chrome extension to approve pull request with LGTM image

Approve Pull Request with image là gì?

Approve Pull Request with image là một tiện ích mở rộng Chrome được phát triển bởi michiaki.mizoguchi, và tính năng chính của nó là "Chrome extension to approve pull request with LGTM image".

Ả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 Approve Pull Request with image

Tải xuống các tệp mở rộng Approve Pull Request with image 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

                        # Feature
- Copy and paste a random LGTM image to GitHub PR review textarea
- Save your favorite LGTM images to local storage and sync Chrome account
- Save as LGTM image from right click menu                    

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

Tên Approve Pull Request with image Approve Pull Request with image
ID bmkigbjalmniajmclpbniddicijnapgh
URL Chính Thức https://chromewebstore.google.com/detail/approve-pull-request-with/bmkigbjalmniajmclpbniddicijnapgh
Mô tả Chrome extension to approve pull request with LGTM image
Kích Thước Tệp 345 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2020-05-08
Ngày Phát Hành 2020-05-01
Nhà Phát Triển michiaki.mizoguchi
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Approve Pull Request with image",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Chrome extension to approve pull request with LGTM image",
    "homepage_url": "https:\/\/github.com\/mizoguche\/approve-pr-with-image",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": true
    },
    "options_page": "static\/option.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action demo",
        "default_popup": "static\/browser_action.html"
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "dist\/inject.js"
            ]
        }
    ]
}