Filter Youtube Channels

Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!

Filter Youtube Channels란 무엇입니까?

Filter Youtube Channels은(는) QubitKernel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!"입니다.

확장 프로그램 스크린샷

Filter Youtube Channels 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Just feed in the name of the channel and it will remember to keep the videos out of your sight.

You can always un-filter or unblock the videos by just clicking "Remove" button in the plugin popup. Extremely easy!

This plugin does not track or store any kind of data, user or otherwise, at remote servers!

Remember to turn it on in incognito/private mode!                    

확장 프로그램 기본 정보

이름 Filter Youtube Channels Filter Youtube Channels
ID nchjfnobpfpkgmhagecolagcfemdkjfm
공식 URL https://chrome.google.com/webstore/detail/filter-youtube-channels/nchjfnobpfpkgmhagecolagcfemdkjfm
설명 Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!
파일 크기 27.94 KB
설치 횟수 113
현재 버전 0.0.0.8
최근 업데이트 2019-11-24
출시 날짜 2019-11-24
평점 2.33/5 총 3 개의 평점
개발자 QubitKernel
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Filter Youtube Channels",
    "version": "0.0.0.8",
    "description": "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon_128.png"
    }
}