Sail

Work in immutable, pre-configured development environments.

Wat is Sail?

Sail is een Chrome-extensie ontwikkeld door https://sail.dev, en de belangrijkste functie is "Work in immutable, pre-configured development environments.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Sail

Download Sail-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Sail Sail
ID deeepphleikpinikcbjplcgojfhkcmna
Officiële URL https://chromewebstore.google.com/detail/sail/deeepphleikpinikcbjplcgojfhkcmna
Beschrijving Work in immutable, pre-configured development environments.
Bestandsgrootte 26.33 KB
Aantal Installaties 129
Huidige Versie 1.2.0
Laatst Bijgewerkt 2019-09-20
Publicatiedatum 2019-09-18
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar https://sail.dev
Betalingswijze free
Extensiewebsite https://sail.dev
Ondersteunde Talen 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"
    }
}