LinkedImageDownloader
表示されている画像やリンク先の画像を一括保存します。
What is LinkedImageDownloader?
LinkedImageDownloader is a Chrome extension developed by https://otomizu.work, and its main feature is "表示されている画像やリンク先の画像を一括保存します。".
Extension Screenshots
Download LinkedImageDownloader Extension CRX File
Download LinkedImageDownloader 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
表示中の画像とHTMLのaタグに設定されているリンク先の画像を一括ダウンロードします。 使用方法: 右クリック→「LinkedImageDownloader」→「表示画像一括ダウンロード」又は「リンク先画像一括ダウンロード」を押す。
Extension Basic Information
Name | |
ID | iehgpielgoogmjlmihjkgmbmneooaand |
Official URL | https://chrome.google.com/webstore/detail/linkedimagedownloader/iehgpielgoogmjlmihjkgmbmneooaand |
Description | 表示されている画像やリンク先の画像を一括保存します。 |
File Size | 4.68 KB |
Installation Count | 5,000 |
Current Version | 0.1 |
Last Updated | 2019-07-13 |
Publish Date | 2019-07-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://otomizu.work |
[email protected] | |
Payment Type | free |
Extension Website | https://otomizu.work/2019/06/05/google-chrome-linked-image-downloader/ |
Supported Languages | 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" ] } |