YouTube Repeater
Repeats YouTube video after it ends.
¿Qué es YouTube Repeater?
YouTube Repeater es una extensión de Chrome desarrollada por shogo, y su función principal es "Repeats YouTube video after it ends.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Repeater
Descarga archivos de extensión YouTube Repeater en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Descripción | Repeats YouTube video after it ends. |
Tamaño del Archivo | 16.98 KB |
Cantidad de Instalaciones | 423 |
Versión Actual | 0.0.4 |
Última Actualización | 2019-03-18 |
Fecha de Publicación | 2019-03-18 |
Calificación | 3.50/5 Total de 4 Calificaciones |
Desarrollador | shogo |
Tipo de Pago | free |
Sitio Web de la Extensión | http://shogo.eu/ |
Idiomas Soportados | 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" ] } |