YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

YouTube Distraction Disabler란 무엇입니까?

YouTube Distraction Disabler은(는) kaiqi.liang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove distracting video suggestions on YouTube."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Distraction Disabler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want.

Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.                    

확장 프로그램 기본 정보

이름 YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
공식 URL https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
설명 Remove distracting video suggestions on YouTube.
파일 크기 12.64 KB
설치 횟수 163
현재 버전 0.0.4
최근 업데이트 2023-01-18
출시 날짜 2020-12-07
평점 5.00/5 총 5 개의 평점
개발자 kaiqi.liang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Distraction Disabler",
    "version": "0.0.4",
    "description": "Remove distracting video suggestions on YouTube.",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "extension.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/*.svg"
    ]
}