YouTube Resume

YouTube Resume remebers when you stop watching a video and will resume where you let go.

Что такое YouTube Resume?

YouTube Resume - это расширение Chrome, разработанное natanielmp, и его основная функция - "YouTube Resume remebers when you stop watching a video and will resume where you let go.".

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

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

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

                        Automatically resume YouTube videos - no user interface. This extension is not necessary if you have view log enabled.                    

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

Название YouTube Resume YouTube Resume
ID lpejgpbegaodlimmjkkfcmhmbkkibccf
Официальный URL https://chrome.google.com/webstore/detail/youtube-resume/lpejgpbegaodlimmjkkfcmhmbkkibccf
Описание YouTube Resume remebers when you stop watching a video and will resume where you let go.
Размер файла 16.67 KB
Количество установок 85
Текущая Версия 0.0.1
Последнее Обновление 2017-05-21
Дата публикации 2017-05-21
Рейтинг 3.50/5 Всего 2 оценок
Разработчик natanielmp
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Resume",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "YouTube Resume remebers when you stop watching a video and will resume where you let go.",
    "homepage_url": "http:\/\/nataniel.no",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/128.png",
        "default_title": "YouTube Resume",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "history",
        "tabs",
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}