Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Co je Youtube Repeat?
Youtube Repeat je rozšíření Chrome vyvinuté mercury200Hg, a jeho hlavní funkcí je „Save your preference once and it will repeat the video for your favourite songs“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Youtube Repeat
Stáhněte si soubory rozšíření Youtube Repeat 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í
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
Základní Informace o Rozšíření
Název | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Popis | Save your preference once and it will repeat the video for your favourite songs |
Velikost souboru | 8.63 KB |
Počet instalací | 361 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2017-03-12 |
Datum Vydání | 2017-03-12 |
Hodnocení | 4.33/5 Celkem 6 Hodnocení |
Vývojář | mercury200Hg |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } |