Gitpod Window

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

Qu'est-ce que Gitpod Window ?

Gitpod Window est une extension Chrome développée par jeromewus, et sa fonction principale est "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Gitpod Window

Téléchargez les fichiers d'extension Gitpod Window au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        * 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                    

Informations de Base sur l'Extension

Nom Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
URL Officiel https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
Description Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
Taille du Fichier 131 KB
Nombre d'Installations 327
Version Actuelle 1.2.0
Dernière Mise à Jour 2020-08-24
Date de Publication 2020-03-24
Évaluation 4.25/5 Total 4 Évaluations
Développeur jeromewus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jeromewu/gitpod-window
URL de la Page d'Aide https://github.com/jeromewu/gitpod-window/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}