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 là gì?
Play With Docker là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Leibiusky, và tính năng chính của nó là "This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Play With Docker
Tải xuống các tệp mở rộng Play With Docker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kibbhpioncdhmamhflnnmfonadknnoan |
URL Chính Thức | https://chromewebstore.google.com/detail/play-with-docker/kibbhpioncdhmamhflnnmfonadknnoan |
Mô tả | This chrome extension adds a "Try in PWD" button on any Docker Hub image page. By clicking this button the user is presented with… |
Kích Thước Tệp | 126 KB |
Số Lần Cài Đặt | 725 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2017-05-18 |
Ngày Phát Hành | 2017-05-18 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Jonathan Leibiusky |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |