GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Vad är GitHub Repository Explorer?
GitHub Repository Explorer är en Chrome-tillägg utvecklad av usufdev.com, och dess huvudfunktion är "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Tilläggsskärmbilder
Ladda ner GitHub Repository Explorer-förlängningens CRX-fil
Ladda ner GitHub Repository Explorer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
Officiell webbadress | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
Beskrivning | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
Filstorlek | 16.38 KB |
Antal Installationer | 206 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-08-22 |
Publiceringsdatum | 2022-10-17 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | usufdev.com |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
Stödda Språk | 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" } } |