Youtube - Remove watched fixer

Actually remove watched Youtube videos from the Watch Later playlist

Что такое Youtube - Remove watched fixer?

Youtube - Remove watched fixer - это расширение Chrome, разработанное Unknown, и его основная функция - "Actually remove watched Youtube videos from the Watch Later playlist".

Скачать файл CRX расширения Youtube - Remove watched fixer

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

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

                        For many people, the "Remove watched" button in Youtube's "Watch later" playlist doesn't work. This extension replaces that button with a workaround.                    

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

Название Youtube - Remove watched fixer Youtube - Remove watched fixer
ID bnmbkjfobcamomnepifeoehjbgodldpc
Официальный URL https://chromewebstore.google.com/detail/youtube-remove-watched-fi/bnmbkjfobcamomnepifeoehjbgodldpc
Описание Actually remove watched Youtube videos from the Watch Later playlist
Размер файла 37.31 KB
Количество установок 369
Текущая Версия 0.0.1
Последнее Обновление 2016-02-09
Дата публикации 2016-02-09
Рейтинг 3.77/5 Всего 13 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube - Remove watched fixer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Actually remove watched Youtube videos from the Watch Later playlist",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/playlist?list=WL"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/script.js"
            ],
            "run_at": "document_end"
        }
    ]
}