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
官方網址 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"
            ]
        }
    ]
}