GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

Τι είναι το GitHub Issues Instant Solutions;

Το GitHub Issues Instant Solutions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Martin Galovic, και η κύρια λειτουργία του είναι "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Issues Instant Solutions

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

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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

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

Όνομα GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
Επίσημο URL https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Περιγραφή Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Μέγεθος Αρχείου 227 KB
Αριθμός Εγκαταστάσεων 67
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2020-02-29
Ημερομηνία Δημοσίευσης 2020-02-29
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Martin Galovic
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://issues.martingalovic.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}