ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
ScrewMyCode.in: Pitch control for YouTubeคืออะไร?
ScrewMyCode.in: Pitch control for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bamdad และคุณลักษณะหลักของมันคือ "Slow down and speed up videos directly on YouTube like you would on a turntable."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ScrewMyCode.in: Pitch control for YouTube
ดาวน์โหลดไฟล์ส่วนขยาย ScrewMyCode.in: Pitch control for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
## 📖 Description Slow down and speed up videos directly on YouTube like you would on a turntable. ### ⚙️ Use either - Popup settings - Embedded controls ### 📣 Share to - Users of the extension with the dynamic YouTube URL - Other users through the dedicated website ScrewMyCode.in
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ScrewMyCode.in: Pitch control for YouTube |
ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
คำอธิบาย | Slow down and speed up videos directly on YouTube like you would on a turntable. |
ขนาดไฟล์ | 177 KB |
จำนวนการติดตั้ง | 377 |
เวอร์ชันปัจจุบัน | 2.4.0 |
อัปเดตครั้งล่าสุด | 2022-08-06 |
วันที่เผยแพร่ | 2022-02-23 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Bamdad |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bamdadsabbagh/screwmycode-in--extension |
URL หน้าช่วยเหลือ | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.4.0", "name": "ScrewMyCode.in: Pitch control for YouTube", "short_name": "ScrewMyCode.in", "description": "Slow down and speed up videos directly on YouTube like you would on a turntable.", "icons": { "128": "assets\/icon-128.png" }, "action": { "default_icon": { "128": "assets\/icon-128.png" }, "default_title": "ScrewMyCode.in", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "tabs" ] } |