ToggleVideoProgressBars
Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
ToggleVideoProgressBars là gì?
ToggleVideoProgressBars là một tiện ích mở rộng Chrome được phát triển bởi rossjgosling, và tính năng chính của nó là "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".
Ả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 ToggleVideoProgressBars
Tải xuống các tệp mở rộng ToggleVideoProgressBars 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
Provides a context menu button, as well as a standard browser icon button, that when pressed toggles the visibility of progress bars and displayed time for various video players! Supports YouTube, Netflix, Amazon, and Vimeo Firefox Version: https://addons.mozilla.org/en-GB/firefox/addon/togglevideoprogressbars/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ToggleVideoProgressBars |
ID | hmenobknlandacpmndhikkcijdkpaccm |
URL Chính Thức | https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm |
Mô tả | Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo |
Kích Thước Tệp | 14.85 KB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-03-30 |
Ngày Phát Hành | 2020-06-01 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | rossjgosling |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/RossGosling-Github/ToggleVideoProgressBars |
URL Trang Trợ Giúp | https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ToggleVideoProgressBars", "version": "1.0.5", "description": "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo", "icons": { "16": "icon\/main.png", "32": "icon\/main.png", "64": "icon\/main.png", "128": "icon\/main.png" }, "browser_action": { "default_icon": { "128": "icon\/visible.png" }, "browser_style": true, "default_title": "ToggleVideoProgressBars Toggle" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "http*:\/\/*youtube.*", "http*:\/\/*youtu.be*", "http*:\/\/*netflix.*", "http*:\/\/*amazon.*", "http*:\/\/*vimeo.*" ], "js": [ "src\/common.js", "src\/document.js" ] } ], "background": { "scripts": [ "src\/common.js", "src\/background.js" ] }, "web_accessible_resources": [ "style\/*.css" ], "permissions": [ "storage", "contextMenus", " |