Approve Pull Request with image

Chrome extension to approve pull request with LGTM image

O que é Approve Pull Request with image?

Approve Pull Request with image é uma extensão do Chrome desenvolvida por michiaki.mizoguchi, e sua principal característica é "Chrome extension to approve pull request with LGTM image".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Approve Pull Request with image

Baixe arquivos de extensão Approve Pull Request with image no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome Approve Pull Request with image Approve Pull Request with image
ID bmkigbjalmniajmclpbniddicijnapgh
URL Oficial https://chromewebstore.google.com/detail/approve-pull-request-with/bmkigbjalmniajmclpbniddicijnapgh
Descrição Chrome extension to approve pull request with LGTM image
Tamanho do Arquivo 345 KB
Contagem de Instalações 22
Versão Atual 2.0.0
Última Atualização 2020-05-08
Data de Publicação 2020-05-01
Desenvolvedor michiaki.mizoguchi
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}