Random color for YouTube's progress bar

Change red color for a random of the YouTube's progress bar

Что такое Random color for YouTube's progress bar?

Random color for YouTube's progress bar - это расширение Chrome, разработанное Axel Juino, и его основная функция - "Change red color for a random of the YouTube's progress bar".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Random color for YouTube's progress bar

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

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

                        This extension change the video's progress bar on YouTube with a random color.                    

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

Название Random color for YouTube's progress bar Random color for YouTube's progress bar
ID nifjmcelpmkfkofnmllhjhphjlhpdckn
Официальный URL https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn
Описание Change red color for a random of the YouTube's progress bar
Размер файла 25.48 KB
Количество установок 610
Текущая Версия 1.1
Последнее Обновление 2020-12-21
Дата публикации 2020-11-29
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Axel Juino
Электронная почта axelosone@gmail.com
Тип оплаты free
URL страницы помощи https://axelouuu.fr
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random color for YouTube's progress bar",
    "description": "Change red color for a random of the YouTube's progress bar",
    "version": "1.1",
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img\/icon_128.png"
    },
    "background": {
        "scripts": [
            "script.js"
        ]
    }
}