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"
    }
}