Instension

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

Cos'è Instension?

Instension è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Instension

Scarica i file di estensione Instension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
URL Ufficiale https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Descrizione Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Dimensione del File 16.2 KB
Conteggio Installazioni 19
Versione Corrente 1.1.0
Ultimo Aggiornamento 2020-01-02
Data di Pubblicazione 2020-01-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/KrusnikViers/Instension
Lingue Supportate 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"
    ]
}