Video Bar
Customizable progress bar for Youtube videos and other web sites
Video Bar là gì?
Video Bar là một tiện ích mở rộng Chrome được phát triển bởi alikims, và tính năng chính của nó là "Customizable progress bar for Youtube videos and other web sites".
Ả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 Video Bar
Tải xuống các tệp mở rộng Video Bar 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
Adds a progress bar to YouTube videos and videos on other web sites. This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden. The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons. All settings are kept in the local browser's storage. Left mouse click on the extension's icon turns it on/off for each browser's tab.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
URL Chính Thức | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
Mô tả | Customizable progress bar for Youtube videos and other web sites |
Kích Thước Tệp | 17.83 KB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 0.0.7 |
Cập Nhật Lần Cuối | 2021-09-20 |
Ngày Phát Hành | 2021-09-16 |
Đánh Giá | 4.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | alikims |
[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", "manifest_version": 2, "name": "Video Bar", "version": "0.0.7", "description": "Customizable progress bar for Youtube videos and other web sites", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "bar_on.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } } |