ReversePlaylist (Youtube)

An extension that allows you to reverse the order playlist items on Youtube are played. By pinning & clicking on the extension you…

Что такое ReversePlaylist (Youtube)?

ReversePlaylist (Youtube) - это расширение Chrome, разработанное Jass, и его основная функция - "An extension that allows you to reverse the order playlist items on Youtube are played. By pinning & clicking on the extension you…".

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

screenshot

Скачать файл CRX расширения ReversePlaylist (Youtube)

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

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

                        An extension that allows you to reverse the order playlist items on Youtube are played.

By pinning & clicking on the extension you can select which direction you want playlist videos to be autoplayed. 

NOTE: The playlist itself will not change! Instead, start on the most recent playlist item and once it completes it will autoplay to the next item in reverse order!                    

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

Название ReversePlaylist (Youtube) ReversePlaylist (Youtube)
ID ebfpbhljpkdfblpodeookdeifakkhhfg
Официальный URL https://chrome.google.com/webstore/detail/reverseplaylist-youtube/ebfpbhljpkdfblpodeookdeifakkhhfg
Описание An extension that allows you to reverse the order playlist items on Youtube are played. By pinning & clicking on the extension you…
Размер файла 11.18 KB
Количество установок 1,886
Текущая Версия 1.0
Последнее Обновление 2020-10-03
Дата публикации 2020-10-03
Рейтинг 3.13/5 Всего 23 оценок
Разработчик Jass
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ReversePlaylist (Youtube)",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "ReversePlaylist (Youtube)"
    }
}