Instagram Images Downloader

Download images from Instagram Web

Instagram Images Downloader란 무엇입니까?

Instagram Images Downloader은(는) https://amalgama.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download images from Instagram Web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        At Amalgama we love finding solutions to problems, that’s why we found a way to download images from instagram web in the easiest way possible.
Here’s how:

Add the extension and go to Instagram Web.
Select the post with the image you’d like to download and click the download button next to the “send” button.
The image will open in a new tab where you’ll be able to download it!                    

확장 프로그램 기본 정보

이름 Instagram Images Downloader Instagram Images Downloader
ID jgcojjncjpipfaeoohikmogimmknhoee
공식 URL https://chrome.google.com/webstore/detail/instagram-images-download/jgcojjncjpipfaeoohikmogimmknhoee
설명 Download images from Instagram Web
파일 크기 57.52 KB
설치 횟수 791
현재 버전 0.0.0.2
최근 업데이트 2021-03-17
출시 날짜 2021-02-14
개발자 https://amalgama.co
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/e/2PACX-1vQpOOE_xOx-w3V6HbRalVBXfU7p6uDJawnx55c6Fjc7Yth_y2E9Ad9vHRxa325k-HZslnZXh5Vx6NiX/pub
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instagram Images Downloader",
    "version": "0.0.0.2",
    "description": "Download images from Instagram Web",
    "permissions": [
        "background",
        "downloads",
        "https:\/\/instagram.com\/*",
        "http:\/\/instagram.com\/*",
        "https:\/\/www.instagram.com\/*",
        "http:\/\/www.instagram.com\/*"
    ],
    "web_accessible_resources": [
        "images\/download-icon.png"
    ],
    "browser_action": {
        "default_icon": "images\/instagram-images-downloader-icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "images\/instagram-images-downloader-icon-16.png",
        "32": "images\/instagram-images-downloader-icon-32.png",
        "48": "images\/instagram-images-downloader-icon-48.png",
        "128": "images\/instagram-images-downloader-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/instagram.com\/*",
                "http:\/\/instagram.com\/*",
                "https:\/\/www.instagram.com\/*",
                "http:\/\/www.instagram.com\/*"
            ],
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "manifest_version": 2
}