Netflix Keyboard Shortcuts Plus
for 3 secs forward/backward
Netflix Keyboard Shortcuts Plus란 무엇입니까?
Netflix Keyboard Shortcuts Plus은(는) center에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "for 3 secs forward/backward"입니다.
확장 프로그램 스크린샷
Netflix Keyboard Shortcuts Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |