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'est-ce que Play With Docker ?

Play With Docker est une extension Chrome développée par Jonathan Leibiusky, et sa fonction principale est "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Play With Docker

Téléchargez les fichiers d'extension Play With Docker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Play With Docker Play With Docker
ID kibbhpioncdhmamhflnnmfonadknnoan
URL Officiel https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan
Description This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…
Taille du Fichier 126 KB
Nombre d'Installations 725
Version Actuelle 0.0.3
Dernière Mise à Jour 2017-05-18
Date de Publication 2017-05-18
Évaluation 4.50/5 Total 8 Évaluations
Développeur Jonathan Leibiusky
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}