Instension

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

Co je Instension?

Instension je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Instension

Stáhněte si soubory rozšíření Instension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
Oficiální URL https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Popis Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Velikost souboru 16.2 KB
Počet instalací 19
Aktuální Verze 1.1.0
Poslední Aktualizace 2020-01-02
Datum Vydání 2020-01-02
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/KrusnikViers/Instension
Podporované Jazyky 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"
    ]
}