GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Qu'est-ce que GitHub Repository Explorer ?
GitHub Repository Explorer est une extension Chrome développée par usufdev.com, et sa fonction principale est "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Repository Explorer
Téléchargez les fichiers d'extension GitHub Repository Explorer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
URL Officiel | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
Description | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
Taille du Fichier | 16.38 KB |
Nombre d'Installations | 206 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-08-22 |
Date de Publication | 2022-10-17 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | usufdev.com |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
Langues Prises en Charge | 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" } } |