GitHub Issues Instant Solutions

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

¿Qué es GitHub Issues Instant Solutions?

GitHub Issues Instant Solutions es una extensión de Chrome desarrollada por Martin Galovic, y su función principal es "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión GitHub Issues Instant Solutions

Descarga archivos de extensión GitHub Issues Instant Solutions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
URL Oficial https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Descripción Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Tamaño del Archivo 227 KB
Cantidad de Instalaciones 67
Versión Actual 1.0.5
Última Actualización 2020-02-29
Fecha de Publicación 2020-02-29
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Martin Galovic
Tipo de Pago free
Sitio Web de la Extensión https://issues.martingalovic.com
Idiomas Soportados 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"
    }
}