Youtube Looper
Custom loops extension for Youtube videos
什麼是Youtube Looper?
Youtube Looper是由Wilker Lúcio開發的Chrome擴展程式,該擴展的主要功能是“Custom loops extension for Youtube videos”。
擴展截圖
下載Youtube Looper擴展crx文件
下載Youtube Looper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Youtube Looper |
ID | bidjeabmcpopfddfcnpniceojmkklcje |
官方網址 | https://chromewebstore.google.com/detail/youtube-looper/bidjeabmcpopfddfcnpniceojmkklcje |
簡介 | Custom loops extension for Youtube videos |
檔案大小 | 288 KB |
安裝次數 | 6,702 |
目前版本 | 2021.06.29 |
更新時間 | 2021-06-30 |
上架時間 | 2018-04-26 |
評分 | 4.22/5 共 55 次評分 |
開發者 | Wilker Lúcio |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/wilkerlucio/media-looper |
說明頁面URL | https://github.com/wilkerlucio/media-looper/issues |
支援的語言 | 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\/*" ] } |