YouTube Repeat Button

YouTube Repeat Button.

Что такое YouTube Repeat Button?

YouTube Repeat Button - это расширение Chrome, разработанное Vladislav Tupikin, и его основная функция - "YouTube Repeat Button.".

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

screenshot
screenshot

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

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

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

                        Google Chrome extension that embeds a video repeat button directly into the YouTube player                    

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

Название YouTube Repeat Button YouTube Repeat Button
ID mpaeilkfigmkompknfmmnojgkbkahfdk
Официальный URL https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk
Описание YouTube Repeat Button.
Размер файла 15.33 KB
Количество установок 394
Текущая Версия 1.0.0
Последнее Обновление 2021-01-05
Дата публикации 2019-12-20
Рейтинг 3.00/5 Всего 4 оценок
Разработчик Vladislav Tupikin
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/MrRefactoring/youtube-repeat
Поддерживаемые языки en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.0.0",
    "default_locale": "en",
    "icons": {
        "16": "src\/images\/icons\/icon16.png",
        "48": "src\/images\/icons\/icon48.png",
        "128": "src\/images\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "css": [
                "src\/styles.css"
            ],
            "js": [
                "src\/helpers\/onElementHeightChange.js",
                "src\/helpers\/onRepeatClick.js",
                "src\/helpers\/removeTitle.js",
                "src\/helpers\/resetTitle.js",
                "src\/helpers\/createButton.js",
                "src\/helpers\/patcher.js",
                "src\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}