Repeat Youtube

Repeat Youtube videos on the main page

Что такое Repeat Youtube?

Repeat Youtube - это расширение Chrome, разработанное http://jaero.space, и его основная функция - "Repeat Youtube videos on the main page".

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

screenshot

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

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

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

                        Repeats youtube videos on the main page!                    

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

Название Repeat Youtube Repeat Youtube
ID medknpmalhljhifghnoeilochoaohilg
Официальный URL https://chrome.google.com/webstore/detail/repeat-youtube/medknpmalhljhifghnoeilochoaohilg
Описание Repeat Youtube videos on the main page
Размер файла 26.72 KB
Количество установок 711
Текущая Версия 1.0.2
Последнее Обновление 2015-12-02
Дата публикации 2015-12-02
Рейтинг 3.95/5 Всего 22 оценок
Разработчик http://jaero.space
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Repeat Youtube",
    "description": "Repeat Youtube videos on the main page",
    "version": "1.0.2",
    "permissions": [
        "tabs",
        "http:\/\/www.youtube.com\/*\/",
        "https:\/\/www.youtube.com\/*\/"
    ],
    "icons": {
        "16": "icons\/on_icon16.png",
        "48": "icons\/on_icon48.png",
        "128": "icons\/on_icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}