GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Was ist GitHub Repository Explorer?
GitHub Repository Explorer ist eine Chrome-Erweiterung, die von usufdev.com entwickelt wurde, und ihr Hauptmerkmal ist "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Erweiterungsscreenshots
GitHub Repository Explorer-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Repository Explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eahjlihgcopjpngnogijleocdjegledp |
| Offizielle URL | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
| Beschreibung | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
| Dateigröße | 16.38 KB |
| Installationsanzahl | 206 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2023-08-22 |
| Veröffentlichungsdatum | 2022-10-17 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | usufdev.com |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
| Unterstützte Sprachen | 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"
}
} | |