Dockerfile Downloader
Dockerfile downloader from Docker Hub!
What is Dockerfile Downloader?
Dockerfile Downloader is a Chrome extension developed by http://itok01.com, and its main feature is "Dockerfile downloader from Docker Hub!".
Extension Screenshots
Download Dockerfile Downloader Extension CRX File
Download Dockerfile Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
It can download Dockerfile from Docker Hub. If you do not see the download button, refresh the page. https://github.com/itok01/dockerfile-downloader
Extension Basic Information
Name | |
ID | edpdnclahplkejfkffobkfjimpkdgdeo |
Official URL | https://chrome.google.com/webstore/detail/dockerfile-downloader/edpdnclahplkejfkffobkfjimpkdgdeo |
Description | Dockerfile downloader from Docker Hub! |
File Size | 9.88 KB |
Installation Count | 125 |
Current Version | 1.0 |
Last Updated | 2020-05-01 |
Publish Date | 2020-05-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://itok01.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/itok01/dockerfile-downloader |
Help Page URL | https://github.com/itok01/dockerfile-downloader/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dockerfile Downloader", "version": "1.0", "description": "Dockerfile downloader from Docker Hub!", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "downloads", "tabs", "https:\/\/hub.docker.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/hub.docker.com\/layers\/*\/images\/*" ], "js": [ "content_scripts.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "cloud_download-24px.svg" ], "manifest_version": 2 } |