YouFocus - YouTube Filter

A filter for YouTube videos.

YouFocus - YouTube Filter란 무엇입니까?

YouFocus - YouTube Filter은(는) Practimake에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A filter for YouTube videos."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouFocus - YouTube Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.                    

확장 프로그램 기본 정보

이름 YouFocus - YouTube Filter YouFocus - YouTube Filter
ID nlokjknlncdcjohkpclkbeofefnmjaad
공식 URL https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad
설명 A filter for YouTube videos.
파일 크기 729 KB
설치 횟수 230
현재 버전 1.0.1
최근 업데이트 2020-07-17
출시 날짜 2020-07-15
평점 4.80/5 총 5 개의 평점
개발자 Practimake
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouFocus - YouTube Filter",
    "description": "A filter for YouTube videos.",
    "version": "1.0.1",
    "icons": {
        "128": "funnelV2.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "utils.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "funnelV2.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ]
}