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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}