Sail

Work in immutable, pre-configured development environments.

Cos'è Sail?

Sail è un'estensione di Chrome sviluppata da https://sail.dev, e la sua funzione principale è "Work in immutable, pre-configured development environments.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sail

Scarica i file di estensione Sail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Sail Sail
ID deeepphleikpinikcbjplcgojfhkcmna
URL Ufficiale https://chromewebstore.google.com/detail/sail/deeepphleikpinikcbjplcgojfhkcmna
Descrizione Work in immutable, pre-configured development environments.
Dimensione del File 26.33 KB
Conteggio Installazioni 129
Versione Corrente 1.2.0
Ultimo Aggiornamento 2019-09-20
Data di Pubblicazione 2019-09-18
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore https://sail.dev
Tipo di Pagamento free
Sito Web dell'Estensione https://sail.dev
Lingue Supportate 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"
    }
}