Instension

Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.

Was ist Instension?

Instension ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Erweiterungsscreenshots

screenshot

Instension-Erweiterungs-CRX-Datei herunterladen

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

                        Extension will add two new items in a context menu, "Open in new tab" and "Download". They will work, if context menu is opened on a fullsize post from the official Instagram website.                    

Grundlegende Informationen zur Erweiterung

Name Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
Offizielle URL https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Beschreibung Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Dateigröße 16.2 KB
Installationsanzahl 19
Aktuelle Version 1.1.0
Letztes Update 2020-01-02
Veröffentlichungsdatum 2020-01-02
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/KrusnikViers/Instension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instension",
    "version": "1.1.0",
    "description": "Chrome browser extension, that allows to download or open in a separate tab a video\/photo post from the Instagram website.",
    "icons": {
        "16": "icons\/instension_16.png",
        "32": "icons\/instension_32.png",
        "64": "icons\/instension_64.png",
        "128": "icons\/instension_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/element_finder.js",
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}