Dockerfile Downloader

Dockerfile downloader from Docker Hub!

Was ist Dockerfile Downloader?

Dockerfile Downloader ist eine Chrome-Erweiterung, die von http://itok01.com entwickelt wurde, und ihr Hauptmerkmal ist "Dockerfile downloader from Docker Hub!".

Erweiterungsscreenshots

screenshot

Dockerfile Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dockerfile Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        It can download Dockerfile from Docker Hub.
If you do not see the download button, refresh the page.

https://github.com/itok01/dockerfile-downloader                    

Grundlegende Informationen zur Erweiterung

Name Dockerfile Downloader Dockerfile Downloader
ID edpdnclahplkejfkffobkfjimpkdgdeo
Offizielle URL https://chrome.google.com/webstore/detail/dockerfile-downloader/edpdnclahplkejfkffobkfjimpkdgdeo
Beschreibung Dockerfile downloader from Docker Hub!
Dateigröße 9.88 KB
Installationsanzahl 125
Aktuelle Version 1.0
Letztes Update 2020-05-01
Veröffentlichungsdatum 2020-05-01
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://itok01.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/itok01/dockerfile-downloader
Hilfeseite URL https://github.com/itok01/dockerfile-downloader/issues
Unterstützte Sprachen 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
}