Youtube Channel Filter

Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!

Youtube Channel Filter란 무엇입니까?

Youtube Channel Filter은(는) IdentityofSine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        # Youtube Channel Filter
## A unique way of productivity. 

### What is Youtube Channel Filter
    Youtube Channel Filter is a chrome extension designed to make youtube a *more productive* platform. 
This is done by letting the user select channels they think would be productive to their lives.

### What does the filter do?
    The filter blocks out all recommendations from channels that are not approved(this can be reversed as well to hide channels you do not like) from the home page and video recommendations. However searching manually does not filter any videos.
### How Do I use it?
    To add a channel to the filter, navigate to the channel's page and you'll see a gray button that says ***Add Channel***. *(if you do not see this, refresh the page)*
    To remove a channel you can do two things. Either navigate to the chrome extension at the top right of your browser, click on it, and click on the channel you want to remove. Or you can navigate back to the channel's page and click the gray button that says ***Remove Channel*** *(Again if you do not see this, refresh the page)*                    

확장 프로그램 기본 정보

이름 Youtube Channel Filter Youtube Channel Filter
ID fgoljeficnldfieaifdoplonkjbmfple
공식 URL https://chromewebstore.google.com/detail/youtube-channel-filter/fgoljeficnldfieaifdoplonkjbmfple
설명 Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!
파일 크기 9.98 KB
설치 횟수 36
현재 버전 3.0
최근 업데이트 2022-09-19
출시 날짜 2022-09-19
평점 5.00/5 총 2 개의 평점
개발자 IdentityofSine
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Channel Filter",
    "description": "Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!",
    "version": "3.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/",
        "https:\/\/*.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "ytcss.css"
            ],
            "js": [
                "ytscript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}