Video Resumer

Automatically resumes YouTube videos from where you played them last.

Что такое Video Resumer?

Video Resumer - это расширение Chrome, разработанное Appteligent LTD., и его основная функция - "Automatically resumes YouTube videos from where you played them last.".

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

screenshot
screenshot

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

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

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

                        Without this extension, for example, when you click through YouTube videos, back and forth, they always start from the beginning, even those, you left watched half way through. No more. With this extension, previously watched videos will resume from where you left them at. Even if you restart your browser.

Version 1.2.1, 1.2.2 fix playback issues with updated YouTube interface.

Version 1.2.0 brings additional options, such as considering a video finished if only a few seconds remain on it and expiring older videos.

Version 1.1 and up now handles YouTube videos, posted on other websites.                    

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

Название Video Resumer Video Resumer
ID bongjkoajofkfpofginnhecihgaeldpe
Официальный URL https://chromewebstore.google.com/detail/video-resumer/bongjkoajofkfpofginnhecihgaeldpe
Описание Automatically resumes YouTube videos from where you played them last.
Размер файла 20.69 KB
Количество установок 44,553
Текущая Версия 1.2.2
Последнее Обновление 2014-02-06
Дата публикации 2014-02-05
Рейтинг 4.03/5 Всего 343 оценок
Разработчик Appteligent LTD.
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Resumer",
    "version": "1.2.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "content\/options.html",
    "background": {
        "scripts": [
            "content\/settings.js",
            "content\/console.js",
            "content\/chrome-storage.js",
            "content\/tracker.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms"
    ]
}