One Frame Link Video Frame Grabber

Allows programmatic access to frames from video elements (including those loaded in iframes).

Что такое One Frame Link Video Frame Grabber?

One Frame Link Video Frame Grabber - это расширение Chrome, разработанное ofl-video-frame-grabber, и его основная функция - "Allows programmatic access to frames from video elements (including those loaded in iframes).".

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

screenshot

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

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

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

                        Allows programmatic access to frames from video elements (including those loaded in iframes).

Specifically aids in transcription duties for One Frame Link.                    

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

Название One Frame Link Video Frame Grabber One Frame Link Video Frame Grabber
ID olgdbgfcehacmcielefghjdihlaikheo
Официальный URL https://chromewebstore.google.com/detail/one-frame-link-video-fram/olgdbgfcehacmcielefghjdihlaikheo
Описание Allows programmatic access to frames from video elements (including those loaded in iframes).
Размер файла 10.79 KB
Количество установок 47
Текущая Версия 0.0.0.1
Последнее Обновление 2021-08-24
Дата публикации 2021-08-23
Разработчик ofl-video-frame-grabber
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://twitter.com/OneFrameLink
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "One Frame Link Video Frame Grabber",
    "description": "Allows programmatic access to frames from video elements (including those loaded in iframes).",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "64": "icons\/64.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.oneframelink.com\/*"
        ]
    },
    "permissions": [
        "",
        "activeTab"
    ]
}