Youtube Trigger Warning
Hide triggering videos on Youtube.
Youtube Trigger Warning là gì?
Youtube Trigger Warning là một tiện ích mở rộng Chrome được phát triển bởi yttriggerwarning, và tính năng chính của nó là "Hide triggering videos on Youtube.".
Ả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 Trigger Warning
Tải xuống các tệp mở rộng Youtube Trigger Warning 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 triggering videos on Youtube according to different filters, or add your own terms to hide videos with. Any video with a blocked term in the title is hidden on Youtube. This can help you avoid triggers for eating disorders, self harm, suicide, or anything else. Note that this won't be able to definitely hide every trigger, but it can certainly help you manage your exposure to them.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Trigger Warning |
ID | dhaighcmggigocehbgigdbmgpkhcekgl |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl |
Mô tả | Hide triggering videos on Youtube. |
Kích Thước Tệp | 42.74 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-08-10 |
Ngày Phát Hành | 2021-08-10 |
Đánh Giá | 2.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | yttriggerwarning |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Trigger Warning", "description": "Hide triggering videos on Youtube.", "version": "1.0", "manifest_version": 3, "permissions": [ "background", "storage" ], "host_permissions": [ "http:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "jQuery-3.6.0-production.js", "content.js" ], "all_frames": true } ], "action": { "default_popup": "popup.html" }, "options_page": "options.html", "icons": { "48": "yttwicon48.png", "128": "yttwicon128.png" } } |