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 là gì?
GitHub Repository Explorer là một tiện ích mở rộng Chrome được phát triển bởi usufdev.com, và tính năng chính của nó là "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Repository Explorer
Tải xuống các tệp mở rộng GitHub Repository Explorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
URL Chính Thức | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
Mô tả | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
Kích Thước Tệp | 16.38 KB |
Số Lần Cài Đặt | 206 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-08-22 |
Ngày Phát Hành | 2022-10-17 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | usufdev.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |