HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Что такое HTML5 Video Resumer?

HTML5 Video Resumer - это расширение Chrome, разработанное Merten Peetz, и его основная функция - "Resumes HTML5 videos that you played before.".

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

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

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

                        This extension will automatically remember at which time you left HTML5 videos and will resume them when played again. The times for played videos are saved up to 1 month.

It supports all HTML5 video formats including MP4 and WEBM. Flash videos are not supported.

It doesn't work for sites that change the video URLs on every page visit yet, such as Youtube and Netflix. However, often times those sites have build in video resume support.                    

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

Название HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Официальный URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Описание Resumes HTML5 videos that you played before.
Размер файла 8.17 KB
Количество установок 318
Текущая Версия 1.0.1
Последнее Обновление 2016-02-23
Дата публикации 2016-02-23
Рейтинг 3.67/5 Всего 6 оценок
Разработчик Merten Peetz
Тип оплаты free
Официальный сайт расширения https://github.com/MorbZ/HTML5-Video-Resumer
URL страницы помощи https://github.com/MorbZ/HTML5-Video-Resumer/issues
Поддерживаемые языки de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Video Resumer",
    "version": "1.0.1",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/functions.js",
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/functions.js",
            "js\/background.js"
        ]
    }
}