YouTube Repeater
Repeats YouTube video after it ends.
Co je YouTube Repeater?
YouTube Repeater je rozšíření Chrome vyvinuté shogo, a jeho hlavní funkcí je „Repeats YouTube video after it ends.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Repeater
Stáhněte si soubory rozšíření YouTube Repeater ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
Oficiální URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Popis | Repeats YouTube video after it ends. |
Velikost souboru | 16.98 KB |
Počet instalací | 423 |
Aktuální Verze | 0.0.4 |
Poslední Aktualizace | 2019-03-18 |
Datum Vydání | 2019-03-18 |
Hodnocení | 3.50/5 Celkem 4 Hodnocení |
Vývojář | shogo |
Typ Platby | free |
Webové stránky Rozšíření | http://shogo.eu/ |
Podporované Jazyky | 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" ] } |