Useful Docker Tags
Add a tab on hub.docker.com to display useful tags (grouped by digest)
What is Useful Docker Tags?
Useful Docker Tags is a Chrome extension developed by Jules Lagarde, and its main feature is "Add a tab on hub.docker.com to display useful tags (grouped by digest)".
Extension Screenshots
Download Useful Docker Tags Extension CRX File
Download Useful Docker Tags 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
UsefulDockerTags adds a new tab to the Docker Hub repository pages. Clicking on the tab displays a table with the most relevant tags for the image, organized by their digest. You can view which tag correspond to the same image, without having to navigate through the Docker Hub web interface.
Extension Basic Information
Name | Useful Docker Tags |
ID | efbkeonpffhkgplinehopofbjhmacpea |
Official URL | https://chromewebstore.google.com/detail/useful-docker-tags/efbkeonpffhkgplinehopofbjhmacpea |
Description | Add a tab on hub.docker.com to display useful tags (grouped by digest) |
File Size | 302 KB |
Installation Count | 47 |
Current Version | 1.1.0 |
Last Updated | 2023-07-26 |
Publish Date | 2023-02-25 |
Developer | Jules Lagarde |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Useful Docker Tags", "version": "1.1.0", "description": "Add a tab on hub.docker.com to display useful tags (grouped by digest)", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/hub.docker.com\/r\/*", "*:\/\/hub.docker.com\/_\/*" ], "js": [ "useful_docker_tags.js" ] } ] } |