YouTube Blacklist

Hide specific channels or videos from YouTube search results

YouTube Blacklist란 무엇입니까?

YouTube Blacklist은(는) datakun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide specific channels or videos from YouTube search results"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Hide specific channels or videos from YouTube search results.

In YouTube search results, you can hide a channel or video from the search results by clicking the menu icon to the right of the channel or video you don't want to see and then "Hide this channel" or "Hide this video" menu.

Hidden channels or videos can be viewed and removed from the options page of the extension.

Change Log:
- 0.3.0
   - Options page improvements.
- 0.2.0
   - Channels or videos registered on the blacklist are hidden from the YouTube main page.                    

확장 프로그램 기본 정보

이름 YouTube Blacklist YouTube Blacklist
ID fgapocjejiiecmooibicahfjngjbgaak
공식 URL https://chromewebstore.google.com/detail/youtube-blacklist/fgapocjejiiecmooibicahfjngjbgaak
설명 Hide specific channels or videos from YouTube search results
파일 크기 293 KB
설치 횟수 222
현재 버전 0.3.0
최근 업데이트 2022-01-17
출시 날짜 2022-01-07
개발자 datakun
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/datakun/YouTube-Blacklist/issues
지원되는 언어 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blacklist",
    "description": "__MSG_description__",
    "version": "0.3.0",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/build\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "build\/injection.js"
            ],
            "css": [
                "build\/injection.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": ".\/popup.html",
        "default_icon": {
            "16": ".\/images\/ic_youtube_blacklist_16.png",
            "32": ".\/images\/ic_youtube_blacklist_32.png",
            "48": ".\/images\/ic_youtube_blacklist_48.png",
            "128": ".\/images\/ic_youtube_blacklist_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/ic_youtube_blacklist_16.png",
        "32": ".\/images\/ic_youtube_blacklist_32.png",
        "48": ".\/images\/ic_youtube_blacklist_48.png",
        "128": ".\/images\/ic_youtube_blacklist_128.png"
    },
    "options_page": ".\/options.html",
    "default_locale": "en"
}