imazip

Download images in web page as a zip file.

imazip란 무엇입니까?

imazip은(는) hatz48에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download images in web page as a zip file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

imazip 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        閲覧しているページ内の画像を zip でダウンロードできる拡張です。
ダウンロードしたい画像がある範囲を指定してダウンロードすることが出来るので、ページ内の不要な画像までダウンロードしてしまうことを防ぐことが出来ます。
また、選択した範囲の中の画像もさらに zip に含めるかどうかを選択できるので、自分の欲しい画像だけを zip することができます。

Change Log
================

1.0.5
- fix bug.

1.0.3,1.0.4
- fix bug.

1.0.2
- ハイライトをわかりやすくしました
- highlight target element more cleary.

1.0.1
- tumblr 検索からのダウンロードを強化しました
- support download from tumblr strongly.

1.0.0
- デザインを修正してバージョン 1 をリリースしました
- fix design and version 1 released.

0.2.1
- 実験的機能: google 画像検索、tumblr 検索からダウンロード出来るようにしました
- experimental: enable download images from 'google images', 'tumblr search'

0.2.0
- フィルタリングに関するいくつかのバグを修正しました
- fix bugs of filtering.

0.1.10
- シークレットモードで利用出来るようにしました
- enable extension in incognito window too.

0.1.9
- サムネイルの場合はリンク画像を選択出来る機能を実装しました
- implement thumbnail filter.

0.1.8:
- デザインを調整しました
- Refine design.

0.1.7:
- 画像サイズでのフィルタリングに関するバグを修正しました

0.1.6:
- 画像選択画面において、画像のサイズと url を表示するようにしました
- zip しないで一括ダウンロードできるようにしました

0.1.5:
- 画像選択画面において、画像を url でフィルタリングできるようにしました
- It becomes to be able to filter images by url, when you are selecting images.

0.1.4:
- 画像選択画面において、画像をサイズでフィルタリングできるようにしました
- It becomes to be able to filter images by size, when you are selecting images.

0.1.3:
- 画像選択画面での画像表示サイズを変更できるようにしました
- It becomes to be able to change image size when you are selecting images.                    

확장 프로그램 기본 정보

이름 imazip imazip
ID bkddmodjbkeffnnpganagafghockmkij
공식 URL https://chromewebstore.google.com/detail/imazip/bkddmodjbkeffnnpganagafghockmkij
설명 Download images in web page as a zip file.
파일 크기 366 KB
설치 횟수 553
현재 버전 1.0.5
최근 업데이트 2015-01-13
출시 날짜 2015-01-13
평점 4.00/5 총 4 개의 평점
개발자 hatz48
결제 유형 free
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "imazip",
    "version": "1.0.5",
    "description": "Download images in web page as a zip file.",
    "icons": {
        "128": "img\/icon_16.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_16.png",
        "default_title": "imazip"
    },
    "author": "hatz48",
    "background": {
        "scripts": [
            "js\/jszip.js",
            "js\/uri.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "incognito": "split",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/search\/*"
            ],
            "js": [
                "js\/jquery-2.0.3.js",
                "js\/helpers\/tumblr.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "activeTab",
        "downloads"
    ]
}