GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Cos'è GitHub Repository Explorer?
GitHub Repository Explorer è un'estensione di Chrome sviluppata da usufdev.com, e la sua funzione principale è "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Repository Explorer
Scarica i file di estensione GitHub Repository Explorer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
URL Ufficiale | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
Descrizione | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
Dimensione del File | 16.38 KB |
Conteggio Installazioni | 206 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2023-08-22 |
Data di Pubblicazione | 2022-10-17 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | usufdev.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
Lingue Supportate | 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" } } |