YouTube Repeat

Repeats a YouTube video

Что такое YouTube Repeat?

YouTube Repeat - это расширение Chrome, разработанное Jimmy Fu, и его основная функция - "Repeats a YouTube video".

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

screenshot

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

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

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

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

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

Название YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
Официальный URL https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
Описание Repeats a YouTube video
Размер файла 24.45 KB
Количество установок 2,323
Текущая Версия 1.1
Последнее Обновление 2015-10-09
Дата публикации 2015-10-08
Рейтинг 4.37/5 Всего 35 оценок
Разработчик Jimmy Fu
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}