YouTube Repeater
Repeats YouTube video after it ends.
Что такое YouTube Repeater?
YouTube Repeater - это расширение Chrome, разработанное shogo, и его основная функция - "Repeats YouTube video after it ends.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Repeater
Скачайте файлы расширений YouTube Repeater в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
Основная информация о расширении
Название | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Описание | Repeats YouTube video after it ends. |
Размер файла | 16.98 KB |
Количество установок | 423 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2019-03-18 |
Дата публикации | 2019-03-18 |
Рейтинг | 3.50/5 Всего 4 оценок |
Разработчик | shogo |
Тип оплаты | free |
Официальный сайт расширения | http://shogo.eu/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |