Dockerfile Downloader

Dockerfile downloader from Docker Hub!

O que é Dockerfile Downloader?

Dockerfile Downloader é uma extensão do Chrome desenvolvida por http://itok01.com, e sua principal característica é "Dockerfile downloader from Docker Hub!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Dockerfile Downloader

Baixe arquivos de extensão Dockerfile Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

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

Informações Básicas da Extensão

Nome Dockerfile Downloader Dockerfile Downloader
ID edpdnclahplkejfkffobkfjimpkdgdeo
URL Oficial https://chrome.google.com/webstore/detail/dockerfile-downloader/edpdnclahplkejfkffobkfjimpkdgdeo
Descrição Dockerfile downloader from Docker Hub!
Tamanho do Arquivo 9.88 KB
Contagem de Instalações 125
Versão Atual 1.0
Última Atualização 2020-05-01
Data de Publicação 2020-05-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor http://itok01.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/itok01/dockerfile-downloader
URL da Página de Ajuda https://github.com/itok01/dockerfile-downloader/issues
Idiomas Suportados 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
}