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によって開発されたChromeの拡張機能で、その主な機能は「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

Play With Docker拡張機能のCRXファイルをダウンロード

Play With Docker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}