BulkImagesFetcher

Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。

What is BulkImagesFetcher?

BulkImagesFetcher is a Chrome extension developed by http://geektrainee.jp, and its main feature is "Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。".

Extension Screenshots

screenshot

Download BulkImagesFetcher Extension CRX File

Download BulkImagesFetcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Webページ内に含まれている画像をまとめてダウンロードするためのChrome拡張です。このChrome拡張ではサイズを指定してダウンロードする画像を絞り込むことができます。ダウンロードしたい画像のあるWebページ内で、Chrome右上のボタンを押すと、ダウンロード候補画像の一覧が表示されます。ダウンロード候補一覧の中の画像をクリックすることにより画像ごとにダウンロードするかしないかの切り替えも可能です。ダウンロード候補でない画像は薄い半透明の状態で表示されます。画像選択が終了した後はダウンロードボタンを押すことでダウンロード処理を一括で行うことができます。                    

Extension Basic Information

Name BulkImagesFetcher BulkImagesFetcher
ID nlpkmcopdggjjlplgpepljlamklbgbfl
Official URL https://chrome.google.com/webstore/detail/bulkimagesfetcher/nlpkmcopdggjjlplgpepljlamklbgbfl
Description Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。
File Size 52.82 KB
Installation Count 344
Current Version 1.0
Last Updated 2015-01-11
Publish Date 2015-01-11
Rating 2.33/5 Total 3 Ratings
Developer http://geektrainee.jp
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BulkImagesFetcher",
    "version": "1.0",
    "description": "Chrome\u3067\u8868\u793a\u4e2d\u306eWeb\u30da\u30fc\u30b8\u5185\u306b\u3042\u308b\u753b\u50cf\u3092\u53d6\u5f97\u3067\u304d\u308bChrome\u62e1\u5f35\u3067\u3059\u3002",
    "browser_action": {
        "default_icon": "icon\/icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/",
                "https:\/\/*\/"
            ],
            "js": [
                "js\/jquery-2.1.3.min.js",
                "js\/util.js",
                "js\/popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery-2.1.3.min.js",
            "js\/util.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}