Instant Downloader

Download one or multiple pictures from Instagram. ✨

Instant Downloader là gì?

Instant Downloader là một tiện ích mở rộng Chrome được phát triển bởi David Maíllo, và tính năng chính của nó là "Download one or multiple pictures from Instagram. ✨".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Instant Downloader

Tải xuống các tệp mở rộng Instant Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension helps you to download all the images from an Instagram's user profile page in a click.

Navigate on a user profile and you will have an icon in your bottom-right corner of your screen. It opens a popup with every single image ready to be downloaded and the option to "Download all" at the same time.

Note: This app will work till the Instagram changes its structure. We will try to update the app if Instagram changes but cant guarantee it


CHANGELOG

Version 3.1 (November 2022)
-----------------
- Fix: "Download all" button works again.
- Added more text instructions and simplified the extension.


Version 3.0 (June 2020)
-----------------
- Removed storage permissions to accomplish new Chrome Store policy. Only need to accept download permissions to download the images on Instagram.
- Added images counter.
- Added instructions of use.
- Fix: Only retrieves post images (not images in profile picture nor highlighted stories).
- Fix: Refresh the image counter on scroll.


Version 2.0.1 (Apr 6, 2018)
----------------------------
* Multi-language: English / Spanish.


Version 2.0 (Mar 28, 2018)
----------------------------
* Full re-design for minimal non-intrusive interface.
* Easier to use: One click and instants are displayed in a grid. Download button downloads em all.
* New download system that works perfectly after the latest Google Chrome version update.

Version 1.0.4 (Mar 20, 2017)
----------------------------
* Renamed to Instant Downloader, due to Instagram's trademark conditions.

Version 1.0.2 (Jan 4, 2017)
----------------------------
* Added JSZIP lib to download as ZIP.
* Downloads real image size.
* Downloads videos as well.


Please note: This application is not provided by Instagram company. It's made by users for users.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Instant Downloader Instant Downloader
ID pblgjchnlklkdkhcafceklibimpdfgbe
URL Chính Thức https://chromewebstore.google.com/detail/instant-downloader/pblgjchnlklkdkhcafceklibimpdfgbe
Mô tả Download one or multiple pictures from Instagram. ✨
Kích Thước Tệp 488 KB
Số Lần Cài Đặt 7,435
Phiên Bản Hiện Tại 3.1
Cập Nhật Lần Cuối 2022-11-15
Ngày Phát Hành 2020-06-25
Đánh Giá 2.78/5 Tổng số 41 Đánh Giá
Nhà Phát Triển David Maíllo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "3.1",
    "manifest_version": 3,
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "19": "images\/icon_19.png",
        "38": "images\/icon_38.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_title": "Instant Downloader",
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_popup": "html\/main.html"
    },
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/www.instagram.com\/"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/lib\/jquery-1.9.1.min.js",
                "js\/lib\/jszip.min.js",
                "js\/lib\/jszip.utils.js",
                "js\/lib\/fileSaver.js",
                "js\/instagram.js"
            ],
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    }
}