Instension

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

What is Instension?

Instension is a Chrome extension developed by Unknown, and its main feature is "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Extension Screenshots

screenshot

Download Instension Extension CRX File

Download Instension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
Official URL 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.
File Size 16.2 KB
Installation Count 19
Current Version 1.1.0
Last Updated 2020-01-02
Publish Date 2020-01-02
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/KrusnikViers/Instension
Supported Languages 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"
    ]
}