Youtube Trigger Warning
Hide triggering videos on Youtube.
What is Youtube Trigger Warning?
Youtube Trigger Warning is a Chrome extension developed by yttriggerwarning, and its main feature is "Hide triggering videos on Youtube.".
Extension Screenshots
Download Youtube Trigger Warning Extension CRX File
Download Youtube Trigger Warning extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Youtube Trigger Warning |
ID | dhaighcmggigocehbgigdbmgpkhcekgl |
Official URL | https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl |
Description | Hide triggering videos on Youtube. |
File Size | 42.74 KB |
Installation Count | 33 |
Current Version | 1.0 |
Last Updated | 2021-08-10 |
Publish Date | 2021-08-10 |
Rating | 2.00/5 Total 3 Ratings |
Developer | yttriggerwarning |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |