Video Looper

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

Co to jest Video Looper?

Video Looper to rozszerzenie Chrome opracowane przez stavsapp, a jego główną funkcją jest „Loop parts or multiple parts of any video on the web.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Video Looper

Pobierz pliki rozszerzeń Video Looper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Looper Video Looper
ID cakhljgchfghghfapljifddkaomfijcn
Oficjalny URL https://chromewebstore.google.com/detail/video-looper/cakhljgchfghghfapljifddkaomfijcn
Opis Loop parts or multiple parts of any video on the web.
Rozmiar pliku 269 KB
Liczba instalacji 2,947
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2021-03-09
Data Publikacji 2019-12-04
Ocena 3.88/5 Łącznie 8 Oceny
Deweloper stavsapp
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}