Play With Docker

This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…

Что такое Play With Docker?

Play With Docker - это расширение Chrome, разработанное Jonathan Leibiusky, и его основная функция - "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Play With Docker

Скачайте файлы расширений Play With Docker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with defined stack files for the image. Then it is possible to just try any of the stacks with a single click on Play With Docker.                    

Основная информация о расширении

Название Play With Docker Play With Docker
ID kibbhpioncdhmamhflnnmfonadknnoan
Официальный URL https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan
Описание This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…
Размер файла 126 KB
Количество установок 725
Текущая Версия 0.0.3
Последнее Обновление 2017-05-18
Дата публикации 2017-05-18
Рейтинг 4.50/5 Всего 8 оценок
Разработчик Jonathan Leibiusky
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Play With Docker",
    "version": "0.0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hub.docker.com\/*"
            ],
            "css": [
                "vendor\/bootstrap.min.css",
                "assets\/css\/pwd.css"
            ],
            "js": [
                "vendor\/jquery-3.2.1.min.js",
                "vendor\/bootstrap.min.js",
                "vendor\/angular.min.js",
                "assets\/js\/pwd.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Play With Docker",
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "assets\/html\/*"
    ],
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}