Instagram Downloader

Download media from Instagram

Instagram Downloader란 무엇입니까?

Instagram Downloader은(는) samagragupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download media from Instagram"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Download any image or Video from Instagram. Just one click to go ahead !!!                    

확장 프로그램 기본 정보

이름 Instagram Downloader Instagram Downloader
ID ciodnolkjfhjhpcdaehfoilnbinkhbca
공식 URL https://chrome.google.com/webstore/detail/instagram-downloader/ciodnolkjfhjhpcdaehfoilnbinkhbca
설명 Download media from Instagram
파일 크기 31.01 KB
설치 횟수 9,000
현재 버전 1.0.0
최근 업데이트 2020-10-06
출시 날짜 2020-10-06
평점 2.60/5 총 5 개의 평점
개발자 samagragupta
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Instagram Downloader",
    "description": "Download media from Instagram",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": {
            "19": "icons\/insta.jpg",
            "38": "icons\/insta.jpg"
        }
    },
    "icons": {
        "16": "icons\/insta.jpg",
        "48": "icons\/insta.jpg",
        "128": "icons\/insta.jpg"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "downloads",
        "storage",
        "http:\/\/www.instagram.com\/*",
        "https:\/\/www.instagram.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}