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