OpenDownload

Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.

Что такое OpenDownload?

OpenDownload - это расширение Chrome, разработанное Manu Poruthoor, и его основная функция - "Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension has limited support for opening source videos from iframes in a new tab.

Disclaimer: I do not take responsibility and I am not liable for any illegal or unlawful activity using this extension.                    

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

Название OpenDownload OpenDownload
ID dnaeahkepdplmojdpfijdeloibcdpemp
Официальный URL https://chromewebstore.google.com/detail/opendownload/dnaeahkepdplmojdpfijdeloibcdpemp
Описание Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.
Размер файла 6.24 KB
Количество установок 222
Текущая Версия 0.3.3
Последнее Обновление 2018-09-15
Дата публикации 2018-09-14
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Manu Poruthoor
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OpenDownload",
    "version": "0.3.3",
    "description": "Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}