GitHub Web IDE
Open GitHub repositories in online web IDE
GitHub Web IDE란 무엇입니까?
GitHub Web IDE은(는) zvizvi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open GitHub repositories in online web IDE"입니다.
확장 프로그램 스크린샷
GitHub Web IDE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds to any GitHub repository a new drop down menu which offers links to a number of online services that allow viewing the source code of the repository in an IDE like interface. Services currently supported: * GitHub Dev * VSCode Dev * CodeSandbox * GiHub1s * GitLab1s * Repl.it * Gitpod * StackBlitz * Glitch * Sourcegraph * Active Forks * Gitpop2 * GitHub Memory * Clone in VSCode (locally) Source code is available on https://github.com/zvizvi/GitHub-Web-IDE
확장 프로그램 기본 정보
이름 | GitHub Web IDE |
ID | adjiklnjodbiaioggfpbpkhbfcnhgkfe |
공식 URL | https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe |
설명 | Open GitHub repositories in online web IDE |
파일 크기 | 869 KB |
설치 횟수 | 11,469 |
현재 버전 | 2.0.3 |
최근 업데이트 | 2022-08-11 |
출시 날짜 | 2021-02-12 |
평점 | 4.75/5 총 20 개의 평점 |
개발자 | zvizvi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/zvizvi/GitHub-Web-IDE |
도움말 페이지 URL | https://github.com/zvizvi/GitHub-Web-IDE/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "name": "GitHub Web IDE", "description": "Open GitHub repositories in online web IDE", "manifest_version": 3, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "homepage_url": "https:\/\/github.com\/zvizvi\/GitHub-Web-IDE", "version": "2.0.3", "author": "[email protected]", "action": { "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } }, "permissions": [ "storage" ], "options_page": "html\/options.html", "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/github.com\/*", "https:\/\/gitlab.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_end" } ], "icons": { "128": "img\/icon128.png", "96": "img\/icon96.png", "72": "img\/icon72.png", "64": "img\/icon64.png", "48": "img\/icon48.png", "32": "img\/icon32.png", "24": "img\/icon24.png", "16": "img\/icon16.png" } } |