Shortcuts for video acceleration
Allows to natively specify shortcuts for speed up or slow down active video
Shortcuts for video acceleration là gì?
Shortcuts for video acceleration là một tiện ích mở rộng Chrome được phát triển bởi ABrill, và tính năng chính của nó là "Allows to natively specify shortcuts for speed up or slow down active video".
Ả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 Shortcuts for video acceleration
Tải xuống các tệp mở rộng Shortcuts for video acceleration 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
The extension allows to natively specify shortcuts for video acceleration in Chrome: - Speed up/slow down - Play video on max possible playback speed - Reset speed to usual 1. Open source 2. Uses native shortcuts manager for extensions in Chrome 3. Almost no-code extension (less than 100 lines) 4. Pure and clean
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | chaknloimoaeonfpfkdoielpnhdfleaf |
URL Chính Thức | https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf |
Mô tả | Allows to natively specify shortcuts for speed up or slow down active video |
Kích Thước Tệp | 41.69 KB |
Số Lần Cài Đặt | 83 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-04-29 |
Ngày Phát Hành | 2020-04-26 |
Nhà Phát Triển | ABrill |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator |
URL Trang Trợ Giúp | https://github.com/andrey-brill/a-chrome-extensions/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shortcuts for video acceleration", "description": "Allows to natively specify shortcuts for speed up or slow down active video", "version": "1.0", "manifest_version": 2, "icons": { "16": "images\/video-accelerator-16px.png", "32": "images\/video-accelerator-32px.png", "64": "images\/video-accelerator-64px.png", "128": "images\/video-accelerator-128px.png", "256": "images\/video-accelerator-256px.png", "512": "images\/video-accelerator-512px.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "all_frames": true } ], "browser_action": { "default_title": "Open hotkeys bindings" }, "permissions": [ "tabs" ], "commands": { "video-speed-up": { "description": "Speed up active video", "suggested_key": { "default": "Alt+Up" } }, "video-slow-down": { "description": "Slow down active video", "suggested_key": { "default": "Alt+Down" } }, "video-reset-speed": { "description": "Reset playback speed", "suggested_key": { "default": "Alt+Shift+Down" } }, "video-max-speed": { "description": "Maximize playback speed", "suggested_key": { "default": "Alt+Shift+Up" } } } } |