Better Shorts Player
Adds video player controls to YouTube Shorts
Better Shorts Player là gì?
Better Shorts Player là một tiện ích mở rộng Chrome được phát triển bởi Joubert Van Zyl, và tính năng chính của nó là "Adds video player controls to YouTube Shorts".
Ả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 Better Shorts Player
Tải xuống các tệp mở rộng Better Shorts Player 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
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video. The controls fade away when not being hovered on as to not be intrusive to the video.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Better Shorts Player |
ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
URL Chính Thức | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
Mô tả | Adds video player controls to YouTube Shorts |
Kích Thước Tệp | 18.21 KB |
Số Lần Cài Đặt | 802 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-03-06 |
Ngày Phát Hành | 2023-03-06 |
Đánh Giá | 4.77/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Joubert Van Zyl |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Shorts Player", "description": "Adds video player controls to YouTube Shorts", "manifest_version": 3, "version": "1.0.0", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "assets\/pause.png", "assets\/play.png", "assets\/muted.png", "assets\/unmuted.png" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |