Keyboard Shortcuts for HBO Max
Use keyboard shortcuts on HBO Max
Keyboard Shortcuts for HBO Max là gì?
Keyboard Shortcuts for HBO Max là một tiện ích mở rộng Chrome được phát triển bởi bigcartoonjay, và tính năng chính của nó là "Use keyboard shortcuts on HBO Max".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Keyboard Shortcuts for HBO Max
Tải xuống các tệp mở rộng Keyboard Shortcuts for HBO Max dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Keyboard Shortcuts for HBO Max |
ID | hoojchigglbjpglngfnhbdfnfhiddnno |
URL Chính Thức | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno |
Mô tả | Use keyboard shortcuts on HBO Max |
Kích Thước Tệp | 40.15 KB |
Số Lần Cài Đặt | 187 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-09-26 |
Ngày Phát Hành | 2021-09-23 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | bigcartoonjay |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |