Sail

Work in immutable, pre-configured development environments.

Sail là gì?

Sail là một tiện ích mở rộng Chrome được phát triển bởi https://sail.dev, và tính năng chính của nó là "Work in immutable, pre-configured development environments.".

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

screenshot

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

Tải xuống các tệp mở rộng Sail 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

                        Sail allows projects to define their own development environment via a single Dockerfile, allowing for consistent, reproducible, and instant environments. Contribute sooner and debug faster.                    

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

Tên Sail Sail
ID deeepphleikpinikcbjplcgojfhkcmna
URL Chính Thức https://chromewebstore.google.com/detail/sail/deeepphleikpinikcbjplcgojfhkcmna
Mô tả Work in immutable, pre-configured development environments.
Kích Thước Tệp 26.33 KB
Số Lần Cài Đặt 129
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2019-09-20
Ngày Phát Hành 2019-09-18
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://sail.dev
Loại Thanh Toán free
Trang Web Mở Rộng https://sail.dev
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sail",
    "version": "1.2.0",
    "author": "Coder",
    "description": "Work in immutable, pre-configured development environments.",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "55.0"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "nativeMessaging",
        "storage",
        "tabs"
    ],
    "options_page": "config.html",
    "icons": {
        "128": "logo128.png"
    },
    "browser_action": {
        "default_title": "Sail"
    }
}