BulkImagesFetcher
Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。
Cos'è BulkImagesFetcher?
BulkImagesFetcher è un'estensione di Chrome sviluppata da http://geektrainee.jp, e la sua funzione principale è "Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BulkImagesFetcher
Scarica i file di estensione BulkImagesFetcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Webページ内に含まれている画像をまとめてダウンロードするためのChrome拡張です。このChrome拡張ではサイズを指定してダウンロードする画像を絞り込むことができます。ダウンロードしたい画像のあるWebページ内で、Chrome右上のボタンを押すと、ダウンロード候補画像の一覧が表示されます。ダウンロード候補一覧の中の画像をクリックすることにより画像ごとにダウンロードするかしないかの切り替えも可能です。ダウンロード候補でない画像は薄い半透明の状態で表示されます。画像選択が終了した後はダウンロードボタンを押すことでダウンロード処理を一括で行うことができます。
Informazioni di Base sull'Estensione
Nome | |
ID | nlpkmcopdggjjlplgpepljlamklbgbfl |
URL Ufficiale | https://chrome.google.com/webstore/detail/bulkimagesfetcher/nlpkmcopdggjjlplgpepljlamklbgbfl |
Descrizione | Chromeで表示中のWebページ内にある画像を取得できるChrome拡張です。 |
Dimensione del File | 52.82 KB |
Conteggio Installazioni | 344 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-01-11 |
Data di Pubblicazione | 2015-01-11 |
Valutazione | 2.33/5 Totale 3 Valutazioni |
Sviluppatore | http://geektrainee.jp |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/" ] } |