Margatsni

Utility extension for Instagram.

Margatsni란 무엇입니까?

Margatsni은(는) Hai Nguyen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Utility extension for Instagram."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        * UPDATE Feb 20, 2018: Support enabling/disabling and pausing/playing stories.
* UPDATE Jul 09, 2017: Support for multiple-photo items.
* UPDATE Jun 11, 2017: Hover over profile pictures to download.
 
Margatsni allows users to download photos and videos from Instagram. 

Currently supported features:
- Download high quality photos if possible (Instagram has allowed uploading of HD images since late 2015).
- Download videos.
- Download buttons are available in both your feed (next to the heart button) and Instagram users' profiles (on moving mouse over each item).
- Disable/enable stories.
- Pause stories.

* DISCLAIMER: This extension is provided as a convenient tool and is by no means related to Instagram, LLC. I am not responsible for any illegal distribution or reposting of the content downloaded using this tool.                    

확장 프로그램 기본 정보

이름 Margatsni Margatsni
ID mijhjcajhhoodjdjpjooppacmodnignn
공식 URL https://chrome.google.com/webstore/detail/margatsni/mijhjcajhhoodjdjpjooppacmodnignn
설명 Utility extension for Instagram.
파일 크기 176 KB
설치 횟수 6,114
현재 버전 3.31
최근 업데이트 2018-06-02
출시 날짜 2018-06-02
평점 3.94/5 총 205 개의 평점
개발자 Hai Nguyen
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Margatsni",
    "description": "Utility extension for Instagram.",
    "version": "3.31",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "run_at": "document_end"
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/www.instagram.com\/*",
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "jszip.min.js",
                "FileSaver.min.js",
                "content.js",
                "storiesUtils.js"
            ],
            "run_at": "document_end"
        }
    ],
    "short_name": "Margatsni",
    "web_accessible_resources": [
        "download_black.png",
        "download_white.png",
        "pause.png",
        "play.png"
    ]
}