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…
Apa itu Play With Docker?
Play With Docker adalah ekstensi Chrome yang dikembangkan oleh Jonathan Leibiusky, dan fitur utamanya adalah "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 Ekstensi
Unduh Berkas CRX Ekstensi Play With Docker
Unduh file ekstensi Play With Docker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | kibbhpioncdhmamhflnnmfonadknnoan |
URL Resmi | https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan |
Deskripsi | This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with… |
Ukuran File | 126 KB |
Jumlah Instalasi | 725 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2017-05-18 |
Tanggal Publikasi | 2017-05-18 |
Penilaian | 4.50/5 Total 8 Penilaian |
Pengembang | Jonathan Leibiusky |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |