Issue Inspector

Preview the most upvoted comments for github issues without scrolling

¿Qué es Issue Inspector?

Issue Inspector es una extensión de Chrome desarrollada por Xetera, y su función principal es "Preview the most upvoted comments for github issues without scrolling".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Issue Inspector

Descarga archivos de extensión Issue Inspector 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

                        Instantly find the solution you're looking for in GitHub issues.

Issue Inspector ranks each comment on issues by the reactions. Comments with many +1 and heart are probably solutions so they go at the top.

This project is still a work in production. If you encounter any bugs, feel free to open up a uh... GitHub issue on the repository                    

Información Básica de la Extensión

Nombre Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
URL Oficial https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Descripción Preview the most upvoted comments for github issues without scrolling
Tamaño del Archivo 29.83 KB
Cantidad de Instalaciones 109
Versión Actual 3.1.0
Última Actualización 2023-01-08
Fecha de Publicación 2020-03-20
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Xetera
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Xetera/issue-inspector
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Issue Inspector",
    "description": "Preview the most upvoted comments for github issues without scrolling",
    "version": "3.1.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "magnifying_glass.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "magnifying_glass.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "webNavigation"
    ]
}