Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Что такое Video Note & Screenshot?

Video Note & Screenshot - это расширение Chrome, разработанное Gemoo Inc., и его основная функция - "Go to take YouTube notes or screenshot YouTube.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Video Note & Screenshot

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

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

                        This tool helps you take screenshots from a YouTube video and extract text from the video.

Check the main features:

1.Video Transcription 
Transcribe video to text by extracting the subtitles/closed captions.

2.Extract Text from Video Screenshots
Take screenshots from the video and use the OCR function to extract text information from the video's screenshots.

3. Take screenshots from YouTube Video quickly.                    

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

Название Video Note & Screenshot Video Note & Screenshot
ID miedbfijmibcgjjmhdccocldliepbfng
Официальный URL https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng
Описание Go to take YouTube notes or screenshot YouTube.
Размер файла 16.58 KB
Количество установок 5,319
Текущая Версия 1.0.3
Последнее Обновление 2023-08-15
Дата публикации 2023-06-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Gemoo Inc.
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gemoo.com/tools/video-note-taking
URL страницы помощи https://gemoo.com/support/
URL страницы политики конфиденциальности https://gemoo.com/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Note & Screenshot",
    "description": "Go to take YouTube notes or screenshot YouTube.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "scripting",
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "https:\/\/*.gemoo.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_title": "Video Note & Screenshot",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.gemoo.com\/*"
            ],
            "css": [
                "assets\/content.css"
            ],
            "js": [
                "my-content-script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}