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…”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | kibbhpioncdhmamhflnnmfonadknnoan |
官方網址 | 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" } } |