Gitpod Window

Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts

Gitpod Window란 무엇입니까?

Gitpod Window은(는) jeromewus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gitpod Window 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * This is NOT an official extension from Gitpod

The goal of this extension is to provide a improved Gitpod online IDE experience. What is does is opening a Chrome popup window with:

- Minimal Chrome Interface (see screenshot)
- Full Keyboard Shortcuts (incl. Ctrl-W, Ctrl-N, Ctrl-T and more)

v1.2.0:
- Fix new tab issue when user tries to open/start a workspace in workspace list.

If you would like to learn how to write a Chrome Extension like this, check: https://medium.com/@jeromewus/i-wrote-a-chrome-extension-gitpod-window-here-is-what-i-learned-8583a3a179dd                    

확장 프로그램 기본 정보

이름 Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
공식 URL https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
설명 Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
파일 크기 131 KB
설치 횟수 327
현재 버전 1.2.0
최근 업데이트 2020-08-24
출시 날짜 2020-03-24
평점 4.25/5 총 4 개의 평점
개발자 jeromewus
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jeromewu/gitpod-window
도움말 페이지 URL https://github.com/jeromewu/gitpod-window/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gitpod Window",
    "version": "1.2.0",
    "description": "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Jerome Wu ",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/gitpod.io\/workspaces\/?popup=true"
            ]
        }
    ]
}