Youtube Customiser
Add and remove Youtube content panels as you wish.
Youtube Customiser là gì?
Youtube Customiser là một tiện ích mở rộng Chrome được phát triển bởi Erlend Eelmets, và tính năng chính của nó là "Add and remove Youtube content panels as you wish.".
Ả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 Customiser
Tải xuống các tệp mở rộng Youtube Customiser 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
Add and remove Youtube content panels as you wish. Does the merchandise bar annoy you? Remove it? Do you want to stop spending time on youtube rabbit holes? Disable video suggestions. Do you judge a video too much based on it's numbers? Disable the numbers.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Customiser |
ID | jlcpaifegmmdaiafenaeajnkbclgikhp |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp |
Mô tả | Add and remove Youtube content panels as you wish. |
Kích Thước Tệp | 752 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-11-11 |
Ngày Phát Hành | 2020-11-11 |
Nhà Phát Triển | Erlend Eelmets |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.2", "short_name": "Youtube Custom", "name": "Youtube Customiser", "description": "Add and remove Youtube content panels as you wish.", "browser_action": { "default_title": "Youtube Customiser", "default_popup": "popup.html" }, "background": { "scripts": [ "background.bundle.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "icons": { "22": "img\/icon-22.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';" } |