Issue Inspector

Preview the most upvoted comments for github issues without scrolling

Co je Issue Inspector?

Issue Inspector je rozšíření Chrome vyvinuté Xetera, a jeho hlavní funkcí je „Preview the most upvoted comments for github issues without scrolling“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Issue Inspector

Stáhněte si soubory rozšíření Issue Inspector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
Oficiální URL https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Popis Preview the most upvoted comments for github issues without scrolling
Velikost souboru 29.83 KB
Počet instalací 109
Aktuální Verze 3.1.0
Poslední Aktualizace 2023-01-08
Datum Vydání 2020-03-20
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Xetera
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Xetera/issue-inspector
Podporované Jazyky 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"
    ]
}