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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Play With Docker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}