Youtube Anti Shorts
Hide All YouTube Shorts
Youtube Anti Shorts là gì?
Youtube Anti Shorts là một tiện ích mở rộng Chrome được phát triển bởi sapondanaisriwan, và tính năng chính của nó là "Hide All YouTube Shorts".
Ả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 Anti Shorts
Tải xuống các tệp mở rộng Youtube Anti Shorts 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
Hide All Shorts videos on YouTube. Source code: https://github.com/sapondanaisriwan/youtube-anti-shorts Changelog: https://github.com/sapondanaisriwan/youtube-anti-shorts/blob/main/CHANGELOD.md Bug Report: https://github.com/sapondanaisriwan/youtube-anti-shorts/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Anti Shorts |
ID | lfhnlieoomhlancdfhihpopgkiekbefd |
URL Chính Thức | https://chrome.google.com/webstore/detail/lfhnlieoomhlancdfhihpopgkiekbefd |
Mô tả | Hide All YouTube Shorts |
Kích Thước Tệp | 138 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2023-07-20 |
Ngày Phát Hành | 2023-05-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | sapondanaisriwan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sapondanaisriwan/youtube-anti-shorts/ |
URL Trang Trợ Giúp | https://github.com/sapondanaisriwan/youtube-anti-shorts/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Anti Shorts", "description": "Hide All YouTube Shorts", "version": "1.0.2", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "icons": { "16": ".\/asset\/img\/icon-16.png", "32": ".\/asset\/img\/icon-32.png", "48": ".\/asset\/img\/icon-48.png", "128": ".\/asset\/img\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ ".\/variables.js", ".\/init-data.js", ".\/hide-shorts.js" ] } ] } |