Github Open With

Open your Github repository with 3rd party web IDEs

Github Open With란 무엇입니까?

Github Open With은(는) nir에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open your Github repository with 3rd party web IDEs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Open With 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension that helps you open Github repositories in a different 3rd party IDES.
 When navigating to any github repository, you can click on the green code button and see new options:
- Open in Github Dev
- Open in Github1s
- Open in StackBlitz
- Open in CodeSandbox                    

확장 프로그램 기본 정보

이름 Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
공식 URL https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
설명 Open your Github repository with 3rd party web IDEs
파일 크기 11.29 KB
설치 횟수 194
현재 버전 1.2.0
최근 업데이트 2023-09-19
출시 날짜 2021-06-12
평점 5.00/5 총 1 개의 평점
개발자 nir
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nirtamir2/github-open-repository-with
도움말 페이지 URL https://github.com/nirtamir2/github-open-repository-with
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Open With",
    "version": "1.2.0",
    "description": "Open your Github repository with 3rd party web IDEs",
    "author": "Nir Tamir",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*\/*",
                "https:\/\/*.github.com\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}