GitHub Issues Instant Solutions

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

Co to jest GitHub Issues Instant Solutions?

GitHub Issues Instant Solutions to rozszerzenie Chrome opracowane przez Martin Galovic, a jego główną funkcją jest „Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Issues Instant Solutions

Pobierz pliki rozszerzeń GitHub Issues Instant Solutions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
Oficjalny URL https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Opis Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Rozmiar pliku 227 KB
Liczba instalacji 67
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2020-02-29
Data Publikacji 2020-02-29
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Martin Galovic
Typ Płatności free
Strona Rozszerzenia https://issues.martingalovic.com
Obsługiwane Języki 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"
    }
}