YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
YouTube Sampler là gì?
YouTube Sampler là một tiện ích mở rộng Chrome được phát triển bởi vibert.dev, và tính năng chính của nó là "Create customized queue points of numeric keys (0~9) for YouTube video.".
Ả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 Sampler
Tải xuống các tệp mở rộng YouTube Sampler 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
Make YouTube videos your biggest sample inspiration database. You can now share queue points with your friends with v.0.2. YouTube has default key mapping on numeric keys to for jumping to different part of a video. "YouTube Sampler" help to customize the queue points. You can also hold the "shift" key to fine tune the position. The extension will save your changes automatically in your browser.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Sampler |
ID | jfkkfiknnoojphipaipdojadlpdeljbj |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj |
Mô tả | Create customized queue points of numeric keys (0~9) for YouTube video. |
Kích Thước Tệp | 537 KB |
Số Lần Cài Đặt | 464 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2021-05-02 |
Ngày Phát Hành | 2021-03-11 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | vibert.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/vibertthio/yt-sampler |
URL Trang Trợ Giúp | https://github.com/vibertthio/yt-sampler/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Sampler", "version": "0.2", "description": "Create customized queue points of numeric keys (0~9) for YouTube video.", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" } }, "icons": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "MacCtrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "Tone.js", "content_script.js" ] } ] } |