Keyboard Shortcuts for HBO Max
Use keyboard shortcuts on HBO Max
Keyboard Shortcuts for HBO Max란 무엇입니까?
Keyboard Shortcuts for HBO Max은(는) bigcartoonjay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use keyboard shortcuts on HBO Max"입니다.
확장 프로그램 스크린샷
Keyboard Shortcuts for HBO Max 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This simple Chrome Extension adds keyboard shortcuts to video playback on the HBO Max site. Left/Right Arrows: Rewind or Fast Forward 10 seconds CTRL+Left/Right Arrows: Rewind or Fast Forward 5 seconds (Note: on macOS, use OPTION+Arrow) Up/Down Arrows: Adjust volume F: Toggle flulscreen
확장 프로그램 기본 정보
이름 | Keyboard Shortcuts for HBO Max |
ID | hoojchigglbjpglngfnhbdfnfhiddnno |
공식 URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno |
설명 | Use keyboard shortcuts on HBO Max |
파일 크기 | 40.15 KB |
설치 횟수 | 187 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-09-26 |
출시 날짜 | 2021-09-23 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | bigcartoonjay |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts for HBO Max", "version": "1.0", "description": "Use keyboard shortcuts on HBO Max", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/play.hbomax.com\/*", "http:\/\/localhost:5000\/*" ], "run_at": "document_idle", "js": [ "src\/js\/content.js" ] } ], "background": { "page": "src\/html\/index.html" }, "icons": { "24": "src\/icon-24.png", "48": "src\/icon-48.png", "64": "src\/icon-64.png", "128": "src\/icon-128.png", "640": "src\/icon-640.png" }, "web_accessible_resources": [ "src\/js\/content.js", "src\/js\/hbomax.js", "src\/js\/config.js", "src\/js\/is-text-box.js", "src\/js\/ui-ready.js", "src\/js\/setup-keybinds.js" ] } |