Netflix Keyboard Shortcuts Plus
for 3 secs forward/backward
Netflix Keyboard Shortcuts Plusคืออะไร?
Netflix Keyboard Shortcuts Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย center และคุณลักษณะหลักของมันคือ "for 3 secs forward/backward"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Keyboard Shortcuts Plus
ดาวน์โหลดไฟล์ส่วนขยาย Netflix Keyboard Shortcuts Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will enable keyboard shortcuts that Netflix doesn't have.A or J: 3 secs backward S or K: pause/play D or L: 3 secs forward 1-9: X secs backward Shift + 1-9: X secs forward C: Toggle subs (Native / Learning language) V: Toggle audio (Native / Learning language) Shift + C: Toggle subs visibility H: Toggle subs clipboard copy by mouseover -: decrease Playback Rate +: increase Playback Rate 0: Playback Rate to default You can set the native language and learning language, and you can toggle audio/subtitles using shortcut keys. Further more, there are many extremely useful shortcuts especially for language learners and heavy users. All you need to do from now on is just install it and click the icon! (^o^) English, Japanese, French, German, Spanish, Chinese... and so on. (More than "18" languages!)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Netflix Keyboard Shortcuts Plus |
ID | lcijklobkiddjhhkfkdhlhaabiknoahg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/netflix-keyboard-shortcut/lcijklobkiddjhhkfkdhlhaabiknoahg |
คำอธิบาย | for 3 secs forward/backward |
ขนาดไฟล์ | 62.42 KB |
จำนวนการติดตั้ง | 419 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2024-01-01 |
วันที่เผยแพร่ | 2020-02-17 |
คะแนน | 4.57/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | center |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/ExisVR/ |
URL หน้าช่วยเหลือ | https://twitter.com/ExisVR/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Keyboard Shortcuts Plus", "description": "for 3 secs forward\/backward", "version": "2.0.0", "manifest_version": 3, "icons": { "128": ".\/images\/icon-128x128.png" }, "background": { "service_worker": ".\/background.js" }, "action": { "default_popup": ".\/options.html", "default_icons": { "128": ".\/images\/icon-128x128.png" } }, "options_page": ".\/options.html", "permissions": [ "activeTab", "tabs", "storage", "scripting" ], "host_permissions": [ "https:\/\/*.netflix.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "run_at": "document_end", "all_frames": true, "css": [ "inject.css" ], "js": [ "libs\/jq.js", "inject.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "resources": [ "libs\/jq.js", "libs\/myLib.js", "inject_content.js" ] } ] } |