HBO Max Hotkeys
Extension allows using keyboard shortcuts on HBO Max.
HBO Max Hotkeys란 무엇입니까?
HBO Max Hotkeys은(는) TheBestChromeExtensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension allows using keyboard shortcuts on HBO Max."입니다.
확장 프로그램 스크린샷
HBO Max Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Say goodbye to mouse clicking: use your keyboard as a remote and control the HBO Max player. How does it work? It’s simple- use keyboard shortcuts: - Rewind 15 seconds (left arrow) - Fast forward 15 seconds (right arrow) - Increase volume (up arrow) - Decrease volume (down arrow) - Go full screen (F) All you need to do is add the HBO Max Hotkeys extension to your browser, enable the keyboard shortcuts using a built-in toggle and control the HBO Max player without any clicks. It's as simple as that! Disclaimer: HBO is a trademark of Home Box Office, Inc. This website & extension hold no association or affiliation with HBO Max or any third-party companies.
확장 프로그램 기본 정보
이름 | HBO Max Hotkeys |
ID | gbbcblgjbfgamjghehalljfbimljlcap |
공식 URL | https://chromewebstore.google.com/detail/hbo-max-hotkeys/gbbcblgjbfgamjghehalljfbimljlcap |
설명 | Extension allows using keyboard shortcuts on HBO Max. |
파일 크기 | 153 KB |
설치 횟수 | 377 |
현재 버전 | 1.5.14 |
최근 업데이트 | 2024-03-04 |
출시 날짜 | 2022-04-08 |
평점 | 4.67/5 총 6 개의 평점 |
개발자 | TheBestChromeExtensions |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://vodextended.com/hbo/ |
개인정보 보호 정책 페이지 URL | https://www.vodextended.com/privacy_policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HBO Max Hotkeys", "description": "Extension allows using keyboard shortcuts on HBO Max.", "version": "1.5.14", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.hbomax.com\/*", "*:\/\/*.max.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": "HBOMax128HotKey.png" }, "content_scripts": [ { "js": [ "value.js", "engine.js", "hbomax.min.js" ], "matches": [ "*:\/\/*.hbomax.com\/*" ] }, { "js": [ "value.js", "contentMax.js", "max.min.js" ], "matches": [ "*:\/\/*.max.com\/*" ] } ], "icons": { "36": "HBOMax36HotKey.png", "128": "HBOMax128HotKey.png" }, "background": { "service_worker": "background.js" } } |