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.
擴展基本資訊
名稱 | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
官方網址 | 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" } } |