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…

Vad är Play With Docker?

Play With Docker är en Chrome-tillägg utvecklad av Jonathan Leibiusky, och dess huvudfunktion är "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Play With Docker-förlängningens CRX-fil

Ladda ner Play With Docker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Play With Docker Play With Docker
ID kibbhpioncdhmamhflnnmfonadknnoan
Officiell webbadress https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan
Beskrivning This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…
Filstorlek 126 KB
Antal Installationer 725
Aktuell Version 0.0.3
Senast Uppdaterad 2017-05-18
Publiceringsdatum 2017-05-18
Betyg 4.50/5 Totalt 8 Betyg
Utvecklare Jonathan Leibiusky
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}