insta-d

adds a download link to instagram pages

Was ist insta-d?

insta-d ist eine Chrome-Erweiterung, die von moldy530 entwickelt wurde, und ihr Hauptmerkmal ist "adds a download link to instagram pages".

Erweiterungsscreenshots

screenshot
screenshot

insta-d-Erweiterungs-CRX-Datei herunterladen

Laden Sie insta-d-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name insta-d insta-d
ID bbofjkmnliejmigcepfilhpigbpnghdg
Offizielle URL https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg
Beschreibung adds a download link to instagram pages
Dateigröße 25.93 KB
Installationsanzahl 120
Aktuelle Version 1.0.2
Letztes Update 2019-01-30
Veröffentlichungsdatum 2019-01-30
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler moldy530
Zahlungsart free
Erweiterungswebsite https://www.github.com/moldy530/insta-d
Unterstützte Sprachen 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"
    }
}