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…”。

扩展截图

screenshot

下载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 GitHub Repository Explorer
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"
    }
}