Sail

Work in immutable, pre-configured development environments.

ما هو Sail؟

Sail هو إضافة Chrome تم تطويرها بواسطة https://sail.dev، والميزة الرئيسية لها هي "Work in immutable, pre-configured development environments.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Sail

قم بتنزيل ملفات الامتداد Sail بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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