Dockerfile Downloader

Dockerfile downloader from Docker Hub!

Apa itu Dockerfile Downloader?

Dockerfile Downloader adalah ekstensi Chrome yang dikembangkan oleh http://itok01.com, dan fitur utamanya adalah "Dockerfile downloader from Docker Hub!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Dockerfile Downloader

Unduh file ekstensi Dockerfile Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

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

Informasi Dasar Ekstensi

Nama Dockerfile Downloader Dockerfile Downloader
ID edpdnclahplkejfkffobkfjimpkdgdeo
URL Resmi https://chrome.google.com/webstore/detail/dockerfile-downloader/edpdnclahplkejfkffobkfjimpkdgdeo
Deskripsi Dockerfile downloader from Docker Hub!
Ukuran File 9.88 KB
Jumlah Instalasi 125
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-05-01
Tanggal Publikasi 2020-05-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang http://itok01.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/itok01/dockerfile-downloader
URL Halaman Bantuan https://github.com/itok01/dockerfile-downloader/issues
Bahasa yang Didukung 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
}