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
官方網址 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"
    }
}