Issue Inspector

Preview the most upvoted comments for github issues without scrolling

Qu'est-ce que Issue Inspector ?

Issue Inspector est une extension Chrome développée par Xetera, et sa fonction principale est "Preview the most upvoted comments for github issues without scrolling".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Issue Inspector

Téléchargez les fichiers d'extension Issue Inspector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
URL Officiel https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Description Preview the most upvoted comments for github issues without scrolling
Taille du Fichier 29.83 KB
Nombre d'Installations 109
Version Actuelle 3.1.0
Dernière Mise à Jour 2023-01-08
Date de Publication 2020-03-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur Xetera
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Xetera/issue-inspector
Langues Prises en Charge 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"
    ]
}