Issue Inspector

Preview the most upvoted comments for github issues without scrolling

What is Issue Inspector?

Issue Inspector is a Chrome extension developed by Xetera, and its main feature is "Preview the most upvoted comments for github issues without scrolling".

Extension Screenshots

screenshot
screenshot

Download Issue Inspector Extension CRX File

Download Issue Inspector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
Official URL https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Description Preview the most upvoted comments for github issues without scrolling
File Size 29.83 KB
Installation Count 109
Current Version 3.1.0
Last Updated 2023-01-08
Publish Date 2020-03-20
Rating 5.00/5 Total 1 Ratings
Developer Xetera
Email [email protected]
Payment Type free
Extension Website https://github.com/Xetera/issue-inspector
Supported Languages 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"
    ]
}