Better watch later

Cleans up the 'Watch later' list on youtube

Что такое Better watch later?

Better watch later - это расширение Chrome, разработанное nikolajaaes, и его основная функция - "Cleans up the 'Watch later' list on youtube".

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

screenshot

Скачать файл CRX расширения Better watch later

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

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

                        This extension makes the 'Watch later' page on youtube more compact and moves several of the buttons from a dropdown menu out to the page, saving a click every time you want to move or remove a video from the list.                    

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

Название Better watch later Better watch later
ID daiklokgbmbpnjnjbikdmjjdpbednjnh
Официальный URL https://chrome.google.com/webstore/detail/better-watch-later/daiklokgbmbpnjnjbikdmjjdpbednjnh
Описание Cleans up the 'Watch later' list on youtube
Размер файла 34.51 KB
Количество установок 254
Текущая Версия 1.4
Последнее Обновление 2022-03-21
Дата публикации 2021-05-16
Рейтинг 3.89/5 Всего 9 оценок
Разработчик nikolajaaes
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better watch later",
    "description": "Cleans up the 'Watch later' list on youtube",
    "version": "1.4",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/playlist?list=WL"
            ],
            "css": [
                "betterWatchLater.css"
            ],
            "js": [
                "betterWatchLater.js"
            ]
        }
    ]
}