YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
YouTube Samplerคืออะไร?
YouTube Sampler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vibert.dev และคุณลักษณะหลักของมันคือ "Create customized queue points of numeric keys (0~9) for YouTube video."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Sampler
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Sampler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Sampler |
ID | jfkkfiknnoojphipaipdojadlpdeljbj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj |
คำอธิบาย | Create customized queue points of numeric keys (0~9) for YouTube video. |
ขนาดไฟล์ | 537 KB |
จำนวนการติดตั้ง | 464 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2021-05-02 |
วันที่เผยแพร่ | 2021-03-11 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | vibert.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/vibertthio/yt-sampler |
URL หน้าช่วยเหลือ | https://github.com/vibertthio/yt-sampler/issues |
ภาษาที่รองรับ | 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" ] } ] } |