Issue Inspector

Preview the most upvoted comments for github issues without scrolling

Τι είναι το Issue Inspector;

Το Issue Inspector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Xetera, και η κύρια λειτουργία του είναι "Preview the most upvoted comments for github issues without scrolling".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Issue Inspector

Λήψη αρχείων επέκτασης Issue Inspector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Issue Inspector Issue Inspector
ID jcekpjkpiblmimjfbejfdkngbmdgaeen
Επίσημο URL https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen
Περιγραφή Preview the most upvoted comments for github issues without scrolling
Μέγεθος Αρχείου 29.83 KB
Αριθμός Εγκαταστάσεων 109
Τρέχουσα Έκδοση 3.1.0
Τελευταία Ενημέρωση 2023-01-08
Ημερομηνία Δημοσίευσης 2020-03-20
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Xetera
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Xetera/issue-inspector
Υποστηριζόμενες Γλώσσες 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"
    ]
}