Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
What is Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos is a Chrome extension developed by https://opensourceforgeeks.blogspot.com, and its main feature is "Auto replay your favorite youtube videos in a loop with zero clicks!".
Extension Screenshots
Download Auto Replay YouTube™ Videos Extension CRX File
Download Auto Replay YouTube™ Videos 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
* Replay your favorite youtube videos automatically with 0 clicks. * Optional settings to turn off the auto looping behavior in a single click. * Easy to use extension with visibility limited to youtube only. * Auto play setting is changed based on looping status.
Extension Basic Information
Name | Auto Replay YouTube™ Videos |
ID | mepicphbpehnpdkmnphaepbglimkeedp |
Official URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
Description | Auto replay your favorite youtube videos in a loop with zero clicks! |
File Size | 72.76 KB |
Installation Count | 682 |
Current Version | 0.0.3 |
Last Updated | 2018-02-28 |
Publish Date | 2018-02-27 |
Rating | 4.43/5 Total 7 Ratings |
Developer | https://opensourceforgeeks.blogspot.com |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Replay YouTube\u2122 Videos", "version": "0.0.3", "manifest_version": 2, "description": "Auto replay your favorite youtube videos in a loop with zero clicks!", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "page_action": { "default_icon": "icon-19.png", "default_title": "Toggle YouTube replay" }, "background": { "scripts": [ "jquery-1.7.1.min.js", "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "activeTab", "notifications" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-1.7.1.min.js", "waitForKeyElements.js", "contentscript.js" ], "run_at": "document_end", "all_frames": true } ] } |