Image Collector

現在開いているWebページで使用されている画像を一括ダウンロードできます

What is Image Collector?

Image Collector is a Chrome extension developed by aozou, and its main feature is "現在開いているWebページで使用されている画像を一括ダウンロードできます".

Extension Screenshots

screenshot
screenshot

Download Image Collector Extension CRX File

Download Image Collector 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

                        1クリックで開いているページで使用している画像をダウンロードできます
画像の収集が捗る拡張機能になります                    

Extension Basic Information

Name Image Collector Image Collector
ID hchligappoinaiboamdalnmofmpaickj
Official URL https://chromewebstore.google.com/detail/image-collector/hchligappoinaiboamdalnmofmpaickj
Description 現在開いているWebページで使用されている画像を一括ダウンロードできます
File Size 1.08 MB
Installation Count 34
Current Version 1.0.1
Last Updated 2019-05-05
Publish Date 2019-04-30
Rating 4.00/5 Total 2 Ratings
Developer aozou
Email [email protected]
Payment Type free
Extension Website https://github.com/aozou99/img-collector
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Collector",
    "short_name": "img-collector",
    "description": "\u73fe\u5728\u958b\u3044\u3066\u3044\u308bWeb\u30da\u30fc\u30b8\u3067\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u753b\u50cf\u3092\u4e00\u62ec\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/chrome-extension-async.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "downloads",
        "tabs",
        "storage"
    ]
}