Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Co to jest Youtube Repeat?
Youtube Repeat to rozszerzenie Chrome opracowane przez mercury200Hg, a jego główną funkcją jest „Save your preference once and it will repeat the video for your favourite songs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Repeat
Pobierz pliki rozszerzeń Youtube Repeat 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
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
Podstawowe informacje o rozszerzeniu
Nazwa | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Opis | Save your preference once and it will repeat the video for your favourite songs |
Rozmiar pliku | 8.63 KB |
Liczba instalacji | 361 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2017-03-12 |
Data Publikacji | 2017-03-12 |
Ocena | 4.33/5 Łącznie 6 Oceny |
Deweloper | mercury200Hg |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |