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ファイルをダウンロード

Gitpod Window拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        * 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
Eメール [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"
            ]
        }
    ]
}