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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}