Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Rewind là gì?
Rewind là một tiện ích mở rộng Chrome được phát triển bởi Anthony Zheng, và tính năng chính của nó là "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.".
Ả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 Rewind
Tải xuống các tệp mở rộng Rewind 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
An extension designed to make you want to "Rewind" that video! Features to customize your YouTube™ browsing experience including: ✔ Mirroring the video player ✔ Hiding the comments section ✔ Hiding the related videos section ✔ Looping through segments of the video SVG Icon used for the logo is free for commercial use. Provided by: https://www.iconfinder.com/Octopaper YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rewind |
ID | needhfaeneknjcmhkkknfcnpjmifhjjj |
URL Chính Thức | https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj |
Mô tả | Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube. |
Kích Thước Tệp | 222 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2020-05-14 |
Ngày Phát Hành | 2020-05-14 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Anthony Zheng |
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": "Rewind", "version": "1.0.1", "description": "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |