Recommendation Tweaker for YouTube
Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Recommendation Tweaker for YouTube là gì?
Recommendation Tweaker for YouTube là một tiện ích mở rộng Chrome được phát triển bởi https://benedani.xyz, và tính năng chính của nó là "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".
Ả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 Recommendation Tweaker for YouTube
Tải xuống các tệp mở rộng Recommendation Tweaker for YouTube 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 open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like! v2.1 notes: Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Recommendation Tweaker for YouTube |
ID | jmcdldlbcgjfppbblagddgjbnjajmgec |
URL Chính Thức | https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec |
Mô tả | Take the trash out! Get rid of the garbage recommendations with this highly customizable extension! |
Kích Thước Tệp | 80.81 KB |
Số Lần Cài Đặt | 269 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2023-09-26 |
Ngày Phát Hành | 2021-04-30 |
Đánh Giá | 3.33/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://benedani.xyz |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://discord.gg/Zf2k7KK |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recommendation Tweaker for YouTube", "version": "2.1", "description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!", "author": "Benedani - https:\/\/benedani.xyz\/", "permissions": [ "storage" ], "icons": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "browser_action": { "default_icon": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "default_title": "Recommendation Tweaker for YouTube", "default_popup": "settings\/a.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "runtweak.js" ] } ], "background": { "scripts": [ "storage.js" ] } } |