Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Wat is Youtube Repeat?
Youtube Repeat is een Chrome-extensie ontwikkeld door mercury200Hg, en de belangrijkste functie is "Save your preference once and it will repeat the video for your favourite songs".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Repeat
Download Youtube Repeat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
Officiële URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Beschrijving | Save your preference once and it will repeat the video for your favourite songs |
Bestandsgrootte | 8.63 KB |
Aantal Installaties | 361 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2017-03-12 |
Publicatiedatum | 2017-03-12 |
Beoordeling | 4.33/5 Totaal 6 Beoordelingen |
Ontwikkelaar | mercury200Hg |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } |