Instension

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

Что такое Instension?

Instension - это расширение Chrome, разработанное Unknown, и его основная функция - "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Instension

Скачайте файлы расширений Instension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
Официальный URL https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Описание Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Размер файла 16.2 KB
Количество установок 19
Текущая Версия 1.1.0
Последнее Обновление 2020-01-02
Дата публикации 2020-01-02
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/KrusnikViers/Instension
Поддерживаемые языки 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"
    ]
}