Hide Youtube Progress Bar
Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Hide Youtube Progress Bar là gì?
Hide Youtube Progress Bar là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Easily hide Youtube’s progress bar and all other information that shows the total duration of 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 Hide Youtube Progress Bar
Tải xuống các tệp mở rộng Hide Youtube Progress 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
This is it to avoid spoilers given by the total time of the video and the related videos. Can easily be turned on and off! Icon created by DesignBolts
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hide Youtube Progress Bar |
ID | peojoklnhinheognhigeliholccihoec |
URL Chính Thức | https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec |
Mô tả | Easily hide Youtube’s progress bar and all other information that shows the total duration of the video |
Kích Thước Tệp | 14.88 KB |
Số Lần Cài Đặt | 2,657 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-03-03 |
Ngày Phát Hành | 2016-03-03 |
Đánh Giá | 4.07/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Youtube Progress Bar", "description": "Easily hide Youtube\u2019s progress bar and all other information that shows the total duration of the video", "version": "1.0", "icons": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png" }, "background": { "persistent": true, "scripts": [ "bg.js" ] }, "page_action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png" }, "default_title": "Hide or show Youtube's progress bar ", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "app.js" ] } ], "permissions": [ "tabs", "storage" ] } |