Youtube Trigger Warning

Hide triggering videos on Youtube.

Youtube Trigger Warningคืออะไร?

Youtube Trigger Warning เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yttriggerwarning และคุณลักษณะหลักของมันคือ "Hide triggering videos on Youtube."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Trigger Warning

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}