Video Tuner
Why tune your piano when you could tune youtube instead?
Video Tunerคืออะไร?
Video Tuner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย callum189 และคุณลักษณะหลักของมันคือ "Why tune your piano when you could tune youtube instead?"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Tuner
ดาวน์โหลดไฟล์ส่วนขยาย Video Tuner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will adjust the pitch of HTML5 Videos to compensate for instruments that are slightly out of tune and are more difficult to tune (like a piano). As a result, you can play that old janky piano along with YouTube videos, without needing to get it tuned. There are also a couple other features - changing playback speed and pitch unrelated to an instrument. Updates planned for the future: integrate transposition option into instrument feature so they work at the same time, at the moment, you can either transpose based on a number of semitones OR based on the instrument, but not both. Note: there have been a couple issues with this extension messing with the CSS of websites. The issues have mostly been fixed but if you notice your favourite website now looks weird, consider disabling this while you're not actively using it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Video Tuner |
ID | hplbaefjnkjpbnbkcbkjmdcedcbncppm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/video-tuner/hplbaefjnkjpbnbkcbkjmdcedcbncppm |
คำอธิบาย | Why tune your piano when you could tune youtube instead? |
ขนาดไฟล์ | 36.04 KB |
จำนวนการติดตั้ง | 1,303 |
เวอร์ชันปัจจุบัน | 0.3.1 |
อัปเดตครั้งล่าสุด | 2019-11-27 |
วันที่เผยแพร่ | 2019-11-27 |
คะแนน | 3.63/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | callum189 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://sites.google.com/view/videotuner/home |
URL หน้าช่วยเหลือ | https://sites.google.com/view/videotuner/feedback |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Tuner", "short_name": "vidtuner", "version": "0.3.1", "manifest_version": 2, "description": "Why tune your piano when you could tune youtube instead?", "homepage_url": "https:\/\/sites.google.com\/view\/videotuner\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab" ], "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/hangouts\/*", "https:\/\/meet.google.com\/*", "https:\/\/teamtreehouse.com\/*", "http:\/\/www.hitbox.tv\/*" ], "css": [ "popup.css" ], "js": [ "jungle.js", "content_script.js", "popup.js" ], "run_at": "document_end" } ] } |