instadl

download instagram pictures in original size

Was ist instadl?

instadl ist eine Chrome-Erweiterung, die von app toolbelt entwickelt wurde, und ihr Hauptmerkmal ist "download instagram pictures in original size".

instadl-Erweiterungs-CRX-Datei herunterladen

Laden Sie instadl-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

                        Download Instagram photos in their original size. + Simpler viewing experience!

0.1.0 UPDATE!
Reworked things internally for a better experience.
Even if the extension is not active, you can right click pictures to bring up the menu. This means you can't hover to see like or comment count. But left clicking the image works as normal to see that info.

Up next, better performance, chronological file names when downloaded, and a simple progress bar while downloading.

Not supported for download currently:
Video
Multiple photos part of a post
Timestamp of when photo was uploaded                    

Grundlegende Informationen zur Erweiterung

Name instadl instadl
ID elbbndodohegppjpmfgjpdgmnfgibagd
Offizielle URL https://chrome.google.com/webstore/detail/instadl/elbbndodohegppjpmfgjpdgmnfgibagd
Beschreibung download instagram pictures in original size
Dateigröße 72.36 KB
Installationsanzahl 32
Aktuelle Version 0.1.1
Letztes Update 2018-06-19
Veröffentlichungsdatum 2018-06-19
Entwickler app toolbelt
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "instadl",
    "description": "download instagram pictures in original size",
    "version": "0.1.1",
    "browser_action": {
        "default_icons": {
            "19": "icon48.png",
            "38": "icon48.png"
        },
        "default_title": "instadl"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "downloads",
        "*:\/\/*.instagram.com\/*",
        "*:\/\/*.cdninstagram.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*",
                "*:\/\/*.cdninstagram.com\/*"
            ],
            "css": [
                "insta.css"
            ],
            "js": [
                "jquery.js",
                "insta.js"
            ]
        }
    ]
}