Real Listen On Repeat
Repeat youtube videos
What is Real Listen On Repeat?
Real Listen On Repeat is a Chrome extension developed by https://miltonlaufer.com.ar, and its main feature is "Repeat youtube videos".
Extension Screenshots
Download Real Listen On Repeat Extension CRX File
Download Real Listen On 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
A simple button to listen Youtube videos on repeat
Extension Basic Information
Name | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
Official URL | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
Description | Repeat youtube videos |
File Size | 8.98 KB |
Installation Count | 89 |
Current Version | 0.0.5.1 |
Last Updated | 2017-12-08 |
Publish Date | 2017-12-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://miltonlaufer.com.ar |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Listen On Repeat", "short_name": "RealListenOnRepeat", "description": "Repeat youtube videos", "version": "0.0.5.1", "manifest_version": 2, "author": "@onwhatthereis", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Click to set on\/off the Youtube Repeat mode" }, "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "myscript.js" ] } ] } |