YouTube Playback Position with Side Buttons
When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
YouTube Playback Position with Side Buttons là gì?
YouTube Playback Position with Side Buttons là một tiện ích mở rộng Chrome được phát triển bởi sanitysign, và tính năng chính của nó là "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the 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 YouTube Playback Position with Side Buttons
Tải xuống các tệp mở rộng YouTube Playback Position with Side Buttons 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
Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video. Extension’s popup allows to change skip time.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Playback Position with Side Buttons |
ID | gdgfjcfcfkhoiebkflodhommhllbjnjd |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd |
Mô tả | When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video |
Kích Thước Tệp | 21.13 KB |
Số Lần Cài Đặt | 97 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-11-04 |
Ngày Phát Hành | 2022-03-17 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | sanitysign |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://sanitysign.github.io/extensions-privacy-policies |
Ngôn Ngữ Được Hỗ Trợ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "event_rules": [ { "event": "declarativeContent.onPageChanged", "actions": [ { "type": "declarativeContent.ShowPageAction" } ], "conditions": [ { "type": "declarativeContent.PageStateMatcher", "pageUrl": { "hostEquals": "www.youtube.com" } } ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" } }, "icons": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" }, "default_locale": "en", "externally_connectable": { "ids": [] } } |