Gitpod Window

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

Co je Gitpod Window?

Gitpod Window je rozšíření Chrome vyvinuté jeromewus, a jeho hlavní funkcí je „Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Gitpod Window

Stáhněte si soubory rozšíření Gitpod Window ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        * 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                    

Základní Informace o Rozšíření

Název Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
Oficiální URL https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
Popis Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
Velikost souboru 131 KB
Počet instalací 327
Aktuální Verze 1.2.0
Poslední Aktualizace 2020-08-24
Datum Vydání 2020-03-24
Hodnocení 4.25/5 Celkem 4 Hodnocení
Vývojář jeromewus
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jeromewu/gitpod-window
URL Stránky Nápovědy https://github.com/jeromewu/gitpod-window/issues
Podporované Jazyky 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"
            ]
        }
    ]
}