Video Screen Grabber

Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.

Что такое Video Screen Grabber?

Video Screen Grabber - это расширение Chrome, разработанное Shang Liang, и его основная функция - "Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.".

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

screenshot

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

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

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

                        Takes a screen grab of the video in the current page of what you are seeing now. For those people who needs to take screenshots of videos for their daily job (like my wife).  

Icon made by Freepik from www.flaticon.com                    

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

Название Video Screen Grabber Video Screen Grabber
ID chacmggpblehgnjocmmedakmcnmhgnbo
Официальный URL https://chromewebstore.google.com/detail/video-screen-grabber/chacmggpblehgnjocmmedakmcnmhgnbo
Описание Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.
Размер файла 36.25 KB
Количество установок 89
Текущая Версия 0.0.2
Последнее Обновление 2020-06-04
Дата публикации 2020-06-03
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Shang Liang
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Screen Grabber",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Screen grab\/capture the current frame of video elements of websites. Works for video conference calls, too.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}