Youtube Trigger Warning

Hide triggering videos on Youtube.

Co to jest Youtube Trigger Warning?

Youtube Trigger Warning to rozszerzenie Chrome opracowane przez yttriggerwarning, a jego główną funkcją jest „Hide triggering videos on Youtube.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Trigger Warning

Pobierz pliki rozszerzeń Youtube Trigger Warning w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Trigger Warning Youtube Trigger Warning
ID dhaighcmggigocehbgigdbmgpkhcekgl
Oficjalny URL https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl
Opis Hide triggering videos on Youtube.
Rozmiar pliku 42.74 KB
Liczba instalacji 33
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-08-10
Data Publikacji 2021-08-10
Ocena 2.00/5 Łącznie 3 Oceny
Deweloper yttriggerwarning
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}