Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
What is Youtube Repeat?
Youtube Repeat is a Chrome extension developed by mercury200Hg, and its main feature is "Save your preference once and it will repeat the video for your favourite songs".
Extension Screenshots
Download Youtube Repeat Extension CRX File
Download Youtube Repeat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
Official URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Description | Save your preference once and it will repeat the video for your favourite songs |
File Size | 8.63 KB |
Installation Count | 361 |
Current Version | 1.0.0 |
Last Updated | 2017-03-12 |
Publish Date | 2017-03-12 |
Rating | 4.33/5 Total 6 Ratings |
Developer | mercury200Hg |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |