YouTube Redux
Replicate old YouTube look and features within the modern layout!
YouTube Redux là gì?
YouTube Redux là một tiện ích mở rộng Chrome được phát triển bởi omniZero, và tính năng chính của nó là "Replicate old YouTube look and features within the modern layout!".
Ả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 YouTube Redux
Tải xuống các tệp mở rộng YouTube Redux 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
Tired of looking for working alternatives to restore old Youtube layout? Embrace the current one modified in order to replicate multiple old styles while still actually using the modern Youtube interface. Features include: ★ Customizable settings! ★ Classic video page layout along with its alternative version that mimics even older layouts ★ Small video player with size presets and pillarboxing ★ Disabling infinite scrolling for comments and related videos ★ Custom number of videos per row on the home page (from default 4 to 1-10) ★ True fullscreen mode ★ Automatic video unpausing during long sessions ★ Ability to restore classic YouTube logo and favicons ★ Precise, non-truncated values for likes/dislikes on the video page ★ Dark theme for playlists that matches old design ★ Hide the 'Autoplay' or 'Play on TV' button ★ Visual changes to home page, search results, channel page, explore pages and others ★ ...and more!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Redux |
ID | mdgdgieddpndgjlmeblhjgljejejkikf |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-redux/mdgdgieddpndgjlmeblhjgljejejkikf |
Mô tả | Replicate old YouTube look and features within the modern layout! |
Kích Thước Tệp | 303 KB |
Số Lần Cài Đặt | 43,379 |
Phiên Bản Hiện Tại | 3.4.1 |
Cập Nhật Lần Cuối | 2024-01-22 |
Ngày Phát Hành | 2020-11-09 |
Đánh Giá | 4.36/5 Tổng số 606 Đánh Giá |
Nhà Phát Triển | omniZero |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/omnidevZero/YouTubeRedux |
URL Trang Trợ Giúp | https://reddit.com/r/youtube/comments/u842nn/youtube_redux_old_layout_replication_extension/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Redux", "version": "3.4.1", "description": "Replicate old YouTube look and features within the modern layout!", "permissions": [ "activeTab", "storage", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.youtube.com\/embed\/*" ], "js": [ "helpers\/logger.js", "helpers\/enums.js", "helpers\/states.js", "initial-setup.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.youtube.com\/embed\/*" ], "js": [ "main.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "*:\/\/*.youtube.com\/*" ] }, { "resources": [ "helpers\/*" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "manifest_version": 3 } |