Youtube Trigger Warning

Hide triggering videos on Youtube.

什麼是Youtube Trigger Warning?

Youtube Trigger Warning是由yttriggerwarning開發的Chrome擴展程式,該擴展的主要功能是“Hide triggering videos on Youtube.”。

擴展截圖

screenshot
screenshot

下載Youtube Trigger Warning擴展crx文件

下載Youtube Trigger Warning擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Youtube Trigger Warning Youtube Trigger Warning
ID dhaighcmggigocehbgigdbmgpkhcekgl
官方網址 https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl
簡介 Hide triggering videos on Youtube.
檔案大小 42.74 KB
安裝次數 33
目前版本 1.0
更新時間 2021-08-10
上架時間 2021-08-10
評分 2.00/5 共 3 次評分
開發者 yttriggerwarning
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}