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…

Wat is Play With Docker?

Play With Docker is een Chrome-extensie ontwikkeld door Jonathan Leibiusky, en de belangrijkste functie is "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Play With Docker

Download Play With Docker-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

                        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.                    

Basisinformatie over de Extensie

Naam Play With Docker Play With Docker
ID kibbhpioncdhmamhflnnmfonadknnoan
Officiële URL https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan
Beschrijving This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…
Bestandsgrootte 126 KB
Aantal Installaties 725
Huidige Versie 0.0.3
Laatst Bijgewerkt 2017-05-18
Publicatiedatum 2017-05-18
Beoordeling 4.50/5 Totaal 8 Beoordelingen
Ontwikkelaar Jonathan Leibiusky
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}