YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

YouTube Blur란 무엇입니까?

YouTube Blur은(는) codedbyleo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Avoid distractions on YouTube by blurring the thumbnails on the homepage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage.

Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus!

PRIVACY
I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.                    

확장 프로그램 기본 정보

이름 YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
공식 URL https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
설명 Avoid distractions on YouTube by blurring the thumbnails on the homepage
파일 크기 17.86 KB
설치 횟수 569
현재 버전 1.0.0
최근 업데이트 2021-09-27
출시 날짜 2021-09-24
평점 4.00/5 총 2 개의 평점
개발자 codedbyleo
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blur",
    "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "128": "icon_128.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/"
            ],
            "js": [
                "blur.js"
            ]
        }
    ]
}