Sail

Work in immutable, pre-configured development environments.

什么是Sail?

Sail是由https://sail.dev开发的Chrome扩展程序,该扩展的主要功能是“Work in immutable, pre-configured development environments.”。

扩展截图

screenshot

下载Sail扩展crx文件

下载Sail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Sail Sail
ID deeepphleikpinikcbjplcgojfhkcmna
官方URL https://chromewebstore.google.com/detail/sail/deeepphleikpinikcbjplcgojfhkcmna
简介 Work in immutable, pre-configured development environments.
文件大小 26.33 KB
安装次数 129
当前版本 1.2.0
更新时间 2019-09-20
上架时间 2019-09-18
评分 3.67/5 共3次评分
开发者 https://sail.dev
付费类型 free
扩展官网 https://sail.dev
支持的语言 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"
    }
}