Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

Что такое Youtube Repeat?

Youtube Repeat - это расширение Chrome, разработанное mercury200Hg, и его основная функция - "Save your preference once and it will repeat the video for your favourite songs".

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

screenshot

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

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

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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

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

Название Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
Официальный URL https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Описание Save your preference once and it will repeat the video for your favourite songs
Размер файла 8.63 KB
Количество установок 361
Текущая Версия 1.0.0
Последнее Обновление 2017-03-12
Дата публикации 2017-03-12
Рейтинг 4.33/5 Всего 6 оценок
Разработчик mercury200Hg
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}