Youtube Trigger Warning
Hide triggering videos on Youtube.
Cos'è Youtube Trigger Warning?
Youtube Trigger Warning è un'estensione di Chrome sviluppata da yttriggerwarning, e la sua funzione principale è "Hide triggering videos on Youtube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Trigger Warning
Scarica i file di estensione Youtube Trigger Warning in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Youtube Trigger Warning |
ID | dhaighcmggigocehbgigdbmgpkhcekgl |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl |
Descrizione | Hide triggering videos on Youtube. |
Dimensione del File | 42.74 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-08-10 |
Data di Pubblicazione | 2021-08-10 |
Valutazione | 2.00/5 Totale 3 Valutazioni |
Sviluppatore | yttriggerwarning |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |