Gitpod Window

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

Cos'è Gitpod Window?

Gitpod Window è un'estensione di Chrome sviluppata da jeromewus, e la sua funzione principale è "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Gitpod Window

Scarica i file di estensione Gitpod Window in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        * 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                    

Informazioni di Base sull'Estensione

Nome Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
URL Ufficiale https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
Descrizione Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
Dimensione del File 131 KB
Conteggio Installazioni 327
Versione Corrente 1.2.0
Ultimo Aggiornamento 2020-08-24
Data di Pubblicazione 2020-03-24
Valutazione 4.25/5 Totale 4 Valutazioni
Sviluppatore jeromewus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jeromewu/gitpod-window
URL della Pagina di Aiuto https://github.com/jeromewu/gitpod-window/issues
Lingue Supportate 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"
            ]
        }
    ]
}