Instagram Downloader

Download images/videos from instagram. No ads. Enjoy :)

Instagram Downloader là gì?

Instagram Downloader là một tiện ích mở rộng Chrome được phát triển bởi cjkumaresh, và tính năng chính của nó là "Download images/videos from instagram. No ads. Enjoy :)".

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

screenshot

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

Tải xuống các tệp mở rộng Instagram 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 will allow the users to download high resolution images and videos from instagram

Features:
1. Download specific image in a profile (e.g: https://www.instagram.com/p/BHCPdEcgpVr/) or (e.g: https://www.instagram.com/p/BHCPdEcgpVr/?taken-by=samanthaprabhuofficial)
2. Download all images from a profile (e.g: https://www.instagram.com/shrutzhaasan/)
3. Download all images in home page (e.g: https://www.instagram.com)
4. Download specific video in a profile (e.g: https://www.instagram.com/p/BHW-JtggF9X/) or (e.g: https://www.instagram.com/p/BHW-JtggF9X/?taken-by=marloeshorst)
5. Download all videos from home page (e.g: https://www.instagram.com)

Note:
Downloading all videos for a profile is not implemented yet

If you like this plugin. Please star this project on Github
https://github.com/cjkumaresh/instagram-downloader-chrome                    

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

Tên Instagram Downloader Instagram Downloader
ID jhbapkbempcealhabaeicidlgbmhafmk
URL Chính Thức https://chromewebstore.google.com/detail/instagram-downloader/jhbapkbempcealhabaeicidlgbmhafmk
Mô tả Download images/videos from instagram. No ads. Enjoy :)
Kích Thước Tệp 88.3 KB
Số Lần Cài Đặt 1,314
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-12-20
Ngày Phát Hành 2023-12-20
Đánh Giá 3.92/5 Tổng số 36 Đánh Giá
Nhà Phát Triển cjkumaresh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cjkumaresh/instagram-downloader-chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instagram Downloader",
    "description": "Download images\/videos from instagram. No ads. Enjoy :)",
    "version": "1.0.2",
    "short_name": "Instagram Download",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}