Youtube Trigger Warning

Hide triggering videos on Youtube.

Co je Youtube Trigger Warning?

Youtube Trigger Warning je rozšíření Chrome vyvinuté yttriggerwarning, a jeho hlavní funkcí je „Hide triggering videos on Youtube.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Youtube Trigger Warning

Stáhněte si soubory rozšíření Youtube Trigger Warning ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Youtube Trigger Warning Youtube Trigger Warning
ID dhaighcmggigocehbgigdbmgpkhcekgl
Oficiální URL https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl
Popis Hide triggering videos on Youtube.
Velikost souboru 42.74 KB
Počet instalací 33
Aktuální Verze 1.0
Poslední Aktualizace 2021-08-10
Datum Vydání 2021-08-10
Hodnocení 2.00/5 Celkem 3 Hodnocení
Vývojář yttriggerwarning
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}