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…
O que é Play With Docker?
Play With Docker é uma extensão do Chrome desenvolvida por Jonathan Leibiusky, e sua principal característica é "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Play With Docker
Baixe arquivos de extensão Play With Docker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | kibbhpioncdhmamhflnnmfonadknnoan |
URL Oficial | https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan |
Descrição | This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with… |
Tamanho do Arquivo | 126 KB |
Contagem de Instalações | 725 |
Versão Atual | 0.0.3 |
Última Atualização | 2017-05-18 |
Data de Publicação | 2017-05-18 |
Classificação | 4.50/5 Total de 8 Avaliações |
Desenvolvedor | Jonathan Leibiusky |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |