Zoom Recording / Video Downloader

Adds a download button to Zoom recording pages

Что такое Zoom Recording / Video Downloader?

Zoom Recording / Video Downloader - это расширение Chrome, разработанное mattp.solutions, и его основная функция - "Adds a download button to Zoom recording pages".

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

screenshot

Скачать файл CRX расширения Zoom Recording / Video Downloader

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

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

                        Allows Zoom recordings and videos to be downloaded by adding a download button below the video. Simply access a recording that you require, and, when the button appears, right click on it and choose "Save link as...". You will then be able to download the video.

This is not to be used to download any Zoom videos that you do not have permission from the creator to download - I provide this script as is, purely to enable functionality in cases where downloading the video is not infringing on copyright, or against the wills, wishes and privacy of the creator(s) and participants of a Zoom video/meeting.                    

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

Название Zoom Recording / Video Downloader Zoom Recording / Video Downloader
ID ehioimgmdbbkmbbimfjcdmonjnjjhgng
Официальный URL https://chrome.google.com/webstore/detail/zoom-recording-video-down/ehioimgmdbbkmbbimfjcdmonjnjjhgng
Описание Adds a download button to Zoom recording pages
Размер файла 6.77 KB
Количество установок 100,000
Текущая Версия 0.1
Последнее Обновление 2020-05-10
Дата публикации 2020-05-10
Рейтинг 3.31/5 Всего 194 оценок
Разработчик mattp.solutions
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoom Recording \/ Video Downloader",
    "description": "Adds a download button to Zoom recording pages",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.zoom.us\/rec\/play\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon.png"
    },
    "short_name": "zoomdl"
}