Image Collector

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

Vad är Image Collector?

Image Collector är en Chrome-tillägg utvecklad av aozou, och dess huvudfunktion är "現在開いているWebページで使用されている画像を一括ダウンロードできます".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Image Collector-förlängningens CRX-fil

Ladda ner Image Collector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Image Collector Image Collector
ID hchligappoinaiboamdalnmofmpaickj
Officiell webbadress https://chromewebstore.google.com/detail/image-collector/hchligappoinaiboamdalnmofmpaickj
Beskrivning 現在開いているWebページで使用されている画像を一括ダウンロードできます
Filstorlek 1.08 MB
Antal Installationer 34
Aktuell Version 1.0.1
Senast Uppdaterad 2019-05-05
Publiceringsdatum 2019-04-30
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare aozou
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/aozou99/img-collector
Stödda Språk 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"
    ]
}