GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Что такое GitHub Repository Explorer?
GitHub Repository Explorer - это расширение Chrome, разработанное usufdev.com, и его основная функция - "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Repository Explorer
Скачайте файлы расширений GitHub Repository Explorer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | eahjlihgcopjpngnogijleocdjegledp |
| Официальный URL | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
| Описание | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
| Размер файла | 16.38 KB |
| Количество установок | 206 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2023-08-22 |
| Дата публикации | 2022-10-17 |
| Рейтинг | 5.00/5 Всего 4 оценок |
| Разработчик | usufdev.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
| Поддерживаемые языки | 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"
}
} | |