YouTube Blocker

Block unwanted YouTube channels.

YouTube Blocker란 무엇입니까?

YouTube Blocker은(는) Przemysław Tyczyński에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block unwanted YouTube channels."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

확장 프로그램 기본 정보

이름 YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
공식 URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
설명 Block unwanted YouTube channels.
파일 크기 96.3 KB
설치 횟수 1,036
현재 버전 1.0.0
최근 업데이트 2020-04-21
출시 날짜 2020-04-21
평점 5.00/5 총 5 개의 평점
개발자 Przemysław Tyczyński
결제 유형 free
확장 프로그램 웹 사이트 https://youtube-blocker.tyczynski.dev
도움말 페이지 URL https://youtube-blocker.tyczynski.dev
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}