Gitpod Window

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

¿Qué es Gitpod Window?

Gitpod Window es una extensión de Chrome desarrollada por jeromewus, y su función principal es "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Gitpod Window

Descarga archivos de extensión Gitpod Window en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        * 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                    

Información Básica de la Extensión

Nombre Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
URL Oficial https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
Descripción Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
Tamaño del Archivo 131 KB
Cantidad de Instalaciones 327
Versión Actual 1.2.0
Última Actualización 2020-08-24
Fecha de Publicación 2020-03-24
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador jeromewus
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jeromewu/gitpod-window
URL de la Página de Ayuda https://github.com/jeromewu/gitpod-window/issues
Idiomas Soportados 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"
            ]
        }
    ]
}