Awesome ScreenShot YouTube

Take a screenshot of any YouTube video with one click.

Что такое Awesome ScreenShot YouTube?

Awesome ScreenShot YouTube - это расширение Chrome, разработанное Magic Dev, и его основная функция - "Take a screenshot of any YouTube video with one click.".

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

screenshot

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

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

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

                        Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file.

Click on the "o" button to take a screenshot.                    

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

Название Awesome ScreenShot YouTube Awesome ScreenShot YouTube
ID igpogmdknpofhifbnhgeniljfoebfene
Официальный URL https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene
Описание Take a screenshot of any YouTube video with one click.
Размер файла 18.79 KB
Количество установок 35
Текущая Версия 1.0.3
Последнее Обновление 2022-02-05
Дата публикации 2021-11-26
Разработчик Magic Dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Awesome ScreenShot YouTube",
    "version": "1.0.3",
    "description": "Take a screenshot of any YouTube video with one click.",
    "icons": {
        "128": "\/images\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webNavigation"
    ]
}