Instension

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

Qu'est-ce que Instension ?

Instension est une extension Chrome développée par Unknown, et sa fonction principale est "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Instension

Téléchargez les fichiers d'extension Instension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
URL Officiel https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Description Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Taille du Fichier 16.2 KB
Nombre d'Installations 19
Version Actuelle 1.1.0
Dernière Mise à Jour 2020-01-02
Date de Publication 2020-01-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/KrusnikViers/Instension
Langues Prises en Charge 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"
    ]
}