YouTube Repeater
Repeats YouTube video after it ends.
Co to jest YouTube Repeater?
YouTube Repeater to rozszerzenie Chrome opracowane przez shogo, a jego główną funkcją jest „Repeats YouTube video after it ends.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Repeater
Pobierz pliki rozszerzeń YouTube Repeater 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Opis | Repeats YouTube video after it ends. |
Rozmiar pliku | 16.98 KB |
Liczba instalacji | 423 |
Aktualna Wersja | 0.0.4 |
Ostatnia Aktualizacja | 2019-03-18 |
Data Publikacji | 2019-03-18 |
Ocena | 3.50/5 Łącznie 4 Oceny |
Deweloper | shogo |
Typ Płatności | free |
Strona Rozszerzenia | http://shogo.eu/ |
Obsługiwane Języki | 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" ] } |