GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

O que é GitHub Issues Instant Solutions?

GitHub Issues Instant Solutions é uma extensão do Chrome desenvolvida por Martin Galovic, e sua principal característica é "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Issues Instant Solutions

Baixe arquivos de extensão GitHub Issues Instant Solutions 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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

Informações Básicas da Extensão

Nome GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
URL Oficial https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Descrição Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Tamanho do Arquivo 227 KB
Contagem de Instalações 67
Versão Atual 1.0.5
Última Atualização 2020-02-29
Data de Publicação 2020-02-29
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Martin Galovic
Tipo de Pagamento free
Site da Extensão https://issues.martingalovic.com
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}