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…

¿Qué es Play With Docker?

Play With Docker es una extensión de Chrome desarrollada por Jonathan Leibiusky, y su función principal es "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Play With Docker

Descarga archivos de extensión Play With Docker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Play With Docker Play With Docker
ID kibbhpioncdhmamhflnnmfonadknnoan
URL Oficial https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan
Descripción This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…
Tamaño del Archivo 126 KB
Cantidad de Instalaciones 725
Versión Actual 0.0.3
Última Actualización 2017-05-18
Fecha de Publicación 2017-05-18
Calificación 4.50/5 Total de 8 Calificaciones
Desarrollador Jonathan Leibiusky
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}