Margatsni

Utility extension for Instagram.

什麼是Margatsni?

Margatsni是由Hai Nguyen開發的Chrome擴展程式,該擴展的主要功能是“Utility extension for Instagram.”。

擴展截圖

screenshot
screenshot
screenshot

下載Margatsni擴展crx文件

下載Margatsni擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        * 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
官方網址 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"
    ]
}