Issue Inspector

Preview the most upvoted comments for github issues without scrolling

Was ist Issue Inspector?

Issue Inspector ist eine Chrome-Erweiterung, die von Xetera entwickelt wurde, und ihr Hauptmerkmal ist "Preview the most upvoted comments for github issues without scrolling".

Erweiterungsscreenshots

screenshot
screenshot

Issue Inspector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Issue Inspector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
Offizielle URL https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Beschreibung Preview the most upvoted comments for github issues without scrolling
Dateigröße 29.83 KB
Installationsanzahl 109
Aktuelle Version 3.1.0
Letztes Update 2023-01-08
Veröffentlichungsdatum 2020-03-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Xetera
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Xetera/issue-inspector
Unterstützte Sprachen 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"
    ]
}