Instagram Downloader

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

Instagram Downloader란 무엇입니까?

Instagram Downloader은(는) cjkumaresh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download images/videos from instagram. No ads. Enjoy :)"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Instagram Downloader Instagram Downloader
ID jhbapkbempcealhabaeicidlgbmhafmk
공식 URL https://chromewebstore.google.com/detail/instagram-downloader/jhbapkbempcealhabaeicidlgbmhafmk
설명 Download images/videos from instagram. No ads. Enjoy :)
파일 크기 88.3 KB
설치 횟수 1,314
현재 버전 1.0.2
최근 업데이트 2023-12-20
출시 날짜 2023-12-20
평점 3.92/5 총 36 개의 평점
개발자 cjkumaresh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cjkumaresh/instagram-downloader-chrome
지원되는 언어 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"
    }
}