Gitpod Window

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

ما هو Gitpod Window؟

Gitpod Window هو إضافة Chrome تم تطويرها بواسطة jeromewus، والميزة الرئيسية لها هي "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Gitpod Window

قم بتنزيل ملفات الامتداد Gitpod Window بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        * 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
عنوان URL الرسمي 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}