GitHub Repository Explorer

Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…

Co to jest GitHub Repository Explorer?

GitHub Repository Explorer to rozszerzenie Chrome opracowane przez usufdev.com, a jego główną funkcją jest „Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Repository Explorer

Pobierz pliki rozszerzeń GitHub Repository Explorer 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

                        Access the github repositories you've visited in the past (browser history) using Chrome Omnibox.

A simple Chrome/Edge Extension for launching Recent GitHub Repositories, or searching on GitHub, inspired by VS Code Launcher by Microsoft (VS Code Team).

Features
- Type repo into your browser’s search bar to activate the omnibox and launch your recent GitHub repositories
- If the repository is not in your browser history our extension help you to will search it from GitHub.
-If you click the icon of the extension itself, it will take you to the GitHub home page.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Repository Explorer GitHub Repository Explorer
ID eahjlihgcopjpngnogijleocdjegledp
Oficjalny URL https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp
Opis Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Rozmiar pliku 16.38 KB
Liczba instalacji 206
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-08-22
Data Publikacji 2022-10-17
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper usufdev.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Repository Explorer",
    "version": "1.0.0",
    "action": {
        "default_icon": "github.png"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "icons": {
        "256": "github.png"
    },
    "commands": {
        "launchVSCode": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+Period"
            },
            "description": "GitHub Repository"
        }
    },
    "permissions": [
        "tabs",
        "history",
        "storage"
    ],
    "omnibox": {
        "keyword": "repo"
    }
}