Gitpod Window

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

Gitpod Window là gì?

Gitpod Window là một tiện ích mở rộng Chrome được phát triển bởi jeromewus, và tính năng chính của nó là "Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gitpod Window

Tải xuống các tệp mở rộng Gitpod Window dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        * 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gitpod Window Gitpod Window
ID jhpkbhdoenpnfnnkelgpikndadikogdl
URL Chính Thức https://chrome.google.com/webstore/detail/gitpod-window/jhpkbhdoenpnfnnkelgpikndadikogdl
Mô tả Gitpod Window offers you a immersive IDE experience with minimal UI and shortcuts
Kích Thước Tệp 131 KB
Số Lần Cài Đặt 327
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2020-08-24
Ngày Phát Hành 2020-03-24
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jeromewus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jeromewu/gitpod-window
URL Trang Trợ Giúp https://github.com/jeromewu/gitpod-window/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}