insta-d

adds a download link to instagram pages

insta-d란 무엇입니까?

insta-d은(는) moldy530에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "adds a download link to instagram pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

insta-d 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simple extension that allows you to download instagram images as you browse them.

Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.                    

확장 프로그램 기본 정보

이름 insta-d insta-d
ID bbofjkmnliejmigcepfilhpigbpnghdg
공식 URL https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg
설명 adds a download link to instagram pages
파일 크기 25.93 KB
설치 횟수 120
현재 버전 1.0.2
최근 업데이트 2019-01-30
출시 날짜 2019-01-30
평점 3.00/5 총 2 개의 평점
개발자 moldy530
결제 유형 free
확장 프로그램 웹 사이트 https://www.github.com/moldy530/insta-d
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "insta-d",
    "description": "adds a download link to instagram pages",
    "version": "1.0.2",
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "64": "images\/icon_64.png"
        },
        "default_title": "insta-d"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    }
}