CleanTube
YouTube with less clutter.
CleanTube là gì?
CleanTube là một tiện ích mở rộng Chrome được phát triển bởi elliotwaite, và tính năng chính của nó là "YouTube with less clutter.".
Ả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 CleanTube
Tải xuống các tệp mở rộng CleanTube 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 extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
URL Chính Thức | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
Mô tả | YouTube with less clutter. |
Kích Thước Tệp | 8.85 KB |
Số Lần Cài Đặt | 1,633 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2023-08-01 |
Ngày Phát Hành | 2021-06-29 |
Đánh Giá | 3.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | elliotwaite |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/elliotwaite/cleantube |
URL Trang Trợ Giúp | https://github.com/elliotwaite/cleantube |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |