GitHub Repository Explorer

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

O que é GitHub Repository Explorer?

GitHub Repository Explorer é uma extensão do Chrome desenvolvida por usufdev.com, e sua principal característica é "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Repository Explorer

Baixe arquivos de extensão GitHub Repository Explorer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GitHub Repository Explorer GitHub Repository Explorer
ID eahjlihgcopjpngnogijleocdjegledp
URL Oficial https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp
Descrição Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Tamanho do Arquivo 16.38 KB
Contagem de Instalações 206
Versão Atual 1.0.0
Última Atualização 2023-08-22
Data de Publicação 2022-10-17
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor usufdev.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues
Idiomas Suportados 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"
    }
}