Dockerfile Downloader

Dockerfile downloader from Docker Hub!

Dockerfile Downloaderとは何ですか?

Dockerfile Downloaderはhttp://itok01.comによって開発されたChromeの拡張機能で、その主な機能は「Dockerfile downloader from Docker Hub!」です。

拡張機能のスクリーンショット

screenshot

Dockerfile Downloader拡張機能のCRXファイルをダウンロード

Dockerfile Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

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

拡張機能の基本情報

名前 Dockerfile Downloader Dockerfile Downloader
ID edpdnclahplkejfkffobkfjimpkdgdeo
公式URL https://chrome.google.com/webstore/detail/dockerfile-downloader/edpdnclahplkejfkffobkfjimpkdgdeo
説明 Dockerfile downloader from Docker Hub!
ファイルサイズ 9.88 KB
インストール数 125
現在のバージョン 1.0
最終更新日 2020-05-01
公開日 2020-05-01
評価 5.00/5 合計 1 レビュー
開発者 http://itok01.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/itok01/dockerfile-downloader
ヘルプページのURL https://github.com/itok01/dockerfile-downloader/issues
対応言語 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
}