Youtube Trigger Warning

Hide triggering videos on Youtube.

Vad är Youtube Trigger Warning?

Youtube Trigger Warning är en Chrome-tillägg utvecklad av yttriggerwarning, och dess huvudfunktion är "Hide triggering videos on Youtube.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Youtube Trigger Warning-förlängningens CRX-fil

Ladda ner Youtube Trigger Warning-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Youtube Trigger Warning Youtube Trigger Warning
ID dhaighcmggigocehbgigdbmgpkhcekgl
Officiell webbadress https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl
Beskrivning Hide triggering videos on Youtube.
Filstorlek 42.74 KB
Antal Installationer 33
Aktuell Version 1.0
Senast Uppdaterad 2021-08-10
Publiceringsdatum 2021-08-10
Betyg 2.00/5 Totalt 3 Betyg
Utvecklare yttriggerwarning
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}