Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Vad är Youtube Repeat?
Youtube Repeat är en Chrome-tillägg utvecklad av mercury200Hg, och dess huvudfunktion är "Save your preference once and it will repeat the video for your favourite songs".
Tilläggsskärmbilder
Ladda ner Youtube Repeat-förlängningens CRX-fil
Ladda ner Youtube Repeat-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Beskrivning | Save your preference once and it will repeat the video for your favourite songs |
Filstorlek | 8.63 KB |
Antal Installationer | 361 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2017-03-12 |
Publiceringsdatum | 2017-03-12 |
Betyg | 4.33/5 Totalt 6 Betyg |
Utvecklare | mercury200Hg |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |