LinkedImageDownloader

表示されている画像やリンク先の画像を一括保存します。

Wat is LinkedImageDownloader?

LinkedImageDownloader is een Chrome-extensie ontwikkeld door https://otomizu.work, en de belangrijkste functie is "表示されている画像やリンク先の画像を一括保存します。".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie LinkedImageDownloader

Download LinkedImageDownloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        表示中の画像とHTMLのaタグに設定されているリンク先の画像を一括ダウンロードします。

使用方法:
右クリック→「LinkedImageDownloader」→「表示画像一括ダウンロード」又は「リンク先画像一括ダウンロード」を押す。                    

Basisinformatie over de Extensie

Naam LinkedImageDownloader LinkedImageDownloader
ID iehgpielgoogmjlmihjkgmbmneooaand
Officiële URL https://chrome.google.com/webstore/detail/linkedimagedownloader/iehgpielgoogmjlmihjkgmbmneooaand
Beschrijving 表示されている画像やリンク先の画像を一括保存します。
Bestandsgrootte 4.68 KB
Aantal Installaties 5,000
Huidige Versie 0.1
Laatst Bijgewerkt 2019-07-13
Publicatiedatum 2019-07-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://otomizu.work
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://otomizu.work/2019/06/05/google-chrome-linked-image-downloader/
Ondersteunde Talen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkedImageDownloader",
    "version": "0.1",
    "description": "\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u753b\u50cf\u3084\u30ea\u30f3\u30af\u5148\u306e\u753b\u50cf\u3092\u4e00\u62ec\u4fdd\u5b58\u3057\u307e\u3059\u3002",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "downloads",
        "activeTab",
        "tabs"
    ]
}