Youtube Looper
Custom loops extension for Youtube videos
Youtube Looper là gì?
Youtube Looper là một tiện ích mở rộng Chrome được phát triển bởi Wilker Lúcio, và tính năng chính của nó là "Custom loops extension for Youtube videos".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Looper
Tải xuống các tệp mở rộng Youtube Looper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Use this plugin to loop in sections of Youtube videos! This is a great tool to help you do music training, or any kind of thing you can leverage repetition on video sections! Features - create multiple loops so you can train sections with ease - your loops are locally stored, when you get back to your videos your loops will still be there - set a custom playback rate (you can use very precise rates as 0.7 0.85 so you can train on your speed) - automatically generate loops for videos that have markers Pro tips: - Hold shift key to adjust time in steps of 100ms instead of 1 second. - Hold shift and click on play to start loop 3 seconds before the loop time. - Click on the Speed label to reset speed to 100% - Click on the time numbers to edit via text (for very precise editing) - If you end a loop before the start, it will flip start/end automatically (actually, that happens if try to make the start to go after the finish in any editing way possible). You can find the source code for this project at https://github.com/wilkerlucio/media-looper.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Looper |
ID | bidjeabmcpopfddfcnpniceojmkklcje |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-looper/bidjeabmcpopfddfcnpniceojmkklcje |
Mô tả | Custom loops extension for Youtube videos |
Kích Thước Tệp | 288 KB |
Số Lần Cài Đặt | 6,702 |
Phiên Bản Hiện Tại | 2021.06.29 |
Cập Nhật Lần Cuối | 2021-06-30 |
Ngày Phát Hành | 2018-04-26 |
Đánh Giá | 4.22/5 Tổng số 55 Đánh Giá |
Nhà Phát Triển | Wilker Lúcio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wilkerlucio/media-looper |
URL Trang Trợ Giúp | https://github.com/wilkerlucio/media-looper/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Looper", "version": "2021.06.29", "description": "Custom loops extension for Youtube videos", "manifest_version": 2, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "js\/youtube\/main.js" ], "all_frames": true } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "js\/*" ] } |