Video Looper

Loop parts or multiple parts of any video on the web.

¿Qué es Video Looper?

Video Looper es una extensión de Chrome desarrollada por stavsapp, y su función principal es "Loop parts or multiple parts of any video on the web.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Video Looper

Descarga archivos de extensión Video Looper 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

                        Loop any part of a video, or multiple parts, easily.

Just click on the extension icon and then `Create Repeat` to get started.

Choose the start and end time of the repeat loop; either by picking the current video time or by manually setting the times. You can also use the slider to quickly move the time.
Then you can pick how many times (or infinitely) to repeat the loops and also if you want any delays between repeats.

You can always add another repeat loop to the same video or reset the repeat counter.

All kinds of extra options available in the setting pages.

Great for learning a new instrument with tutorials, DIY videos and much more.

Enjoy :)

Works on almost all video hosting websites.                    

Información Básica de la Extensión

Nombre Video Looper Video Looper
ID cakhljgchfghghfapljifddkaomfijcn
URL Oficial https://chromewebstore.google.com/detail/video-looper/cakhljgchfghghfapljifddkaomfijcn
Descripción Loop parts or multiple parts of any video on the web.
Tamaño del Archivo 269 KB
Cantidad de Instalaciones 2,947
Versión Actual 0.0.4
Última Actualización 2021-03-09
Fecha de Publicación 2019-12-04
Calificación 3.88/5 Total de 8 Calificaciones
Desarrollador stavsapp
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Looper",
    "version": "0.0.4",
    "description": "Loop parts or multiple parts of any video on the web.",
    "permissions": [
        "activeTab",
        "storage",
        "notifications",
        "declarativeContent"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-start.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "utils.js",
        "content-script.js",
        "content-start.js"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/VideoLooperImageLightRedBlue16.png",
            "48": "images\/VideoLooperImageLightRedBlue48.png",
            "128": "images\/VideoLooperImageLightRedBlue128.png"
        }
    },
    "icons": {
        "16": "images\/VideoLooperImageLightRedBlue16.png",
        "48": "images\/VideoLooperImageLightRedBlue48.png",
        "128": "images\/VideoLooperImageLightRedBlue128.png"
    },
    "manifest_version": 2
}