Save for Instagram

The easiest way to download photos and videos from Instagram.com

Was ist Save for Instagram?

Save for Instagram ist eine Chrome-Erweiterung, die von Andrii Shevchuk-Yuhanets entwickelt wurde, und ihr Hauptmerkmal ist "The easiest way to download photos and videos from Instagram.com".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Save for Instagram-Erweiterungs-CRX-Datei herunterladen

Laden Sie Save for Instagram-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The simplest and the best solution for downloading photos, videos, stories and IGTV from instagram.com

Place cursor on photo or video then click right mouse button and "Save as..."

This extension doesn't store any user data                    

Grundlegende Informationen zur Erweiterung

Name Save for Instagram Save for Instagram
ID abibgkmmeglmaiomdanklcpjmefgcjmc
Offizielle URL https://chromewebstore.google.com/detail/save-for-instagram/abibgkmmeglmaiomdanklcpjmefgcjmc
Beschreibung The easiest way to download photos and videos from Instagram.com
Dateigröße 17.38 KB
Installationsanzahl 20,000
Aktuelle Version 1.37
Letztes Update 2020-05-04
Veröffentlichungsdatum 2020-05-03
Bewertung 3.77/5 Insgesamt 98 Bewertungen
Entwickler Andrii Shevchuk-Yuhanets
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save for Instagram",
    "short_name": "Save for Instagram",
    "version": "1.37",
    "author": "Andrii Shevchuk-Yuhanets",
    "description": "The easiest way to download photos and videos from Instagram.com",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    },
    "permissions": [
        "*:\/\/*.instagram.com\/*",
        "contextMenus",
        "downloads",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options.html"
}