Youtube Trigger Warning
Hide triggering videos on Youtube.
O que é Youtube Trigger Warning?
Youtube Trigger Warning é uma extensão do Chrome desenvolvida por yttriggerwarning, e sua principal característica é "Hide triggering videos on Youtube.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Trigger Warning
Baixe arquivos de extensão Youtube Trigger Warning no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Youtube Trigger Warning |
ID | dhaighcmggigocehbgigdbmgpkhcekgl |
URL Oficial | https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl |
Descrição | Hide triggering videos on Youtube. |
Tamanho do Arquivo | 42.74 KB |
Contagem de Instalações | 33 |
Versão Atual | 1.0 |
Última Atualização | 2021-08-10 |
Data de Publicação | 2021-08-10 |
Classificação | 2.00/5 Total de 3 Avaliações |
Desenvolvedor | yttriggerwarning |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |