Useful Docker Tags

Add a tab on hub.docker.com to display useful tags (grouped by digest)

Co to jest Useful Docker Tags?

Useful Docker Tags to rozszerzenie Chrome opracowane przez Jules Lagarde, a jego główną funkcją jest „Add a tab on hub.docker.com to display useful tags (grouped by digest)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Useful Docker Tags

Pobierz pliki rozszerzeń Useful Docker Tags w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Useful Docker Tags Useful Docker Tags
ID efbkeonpffhkgplinehopofbjhmacpea
Oficjalny URL https://chromewebstore.google.com/detail/useful-docker-tags/efbkeonpffhkgplinehopofbjhmacpea
Opis Add a tab on hub.docker.com to display useful tags (grouped by digest)
Rozmiar pliku 302 KB
Liczba instalacji 47
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-07-26
Data Publikacji 2023-02-25
Deweloper Jules Lagarde
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}