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はusufdev.comによって開発されたChromeの拡張機能で、その主な機能は「Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…」です。
拡張機能のスクリーンショット
GitHub Repository Explorer拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
}
} | |