Blurred thumbnails

Blur thumbnails on YT page for whatever reason

Blurred thumbnails란 무엇입니까?

Blurred thumbnails은(는) krzysiek.kurczewski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blur thumbnails on YT page for whatever reason"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Blurred thumbnails 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension allows to selectively blur thumbnails on Youtube videos.

# Possible configuration:
- Whitelist & blacklist
- Channel name
- Keywords in video title

# How to configure:
- Click extension icon to open options
- Click on tags to edit existing keywords
- Press enter to add new keywords
- For channels use plain names (including spaces)
- Use: ".*" as a keyword to match all patterns
- Use "Test phrase" input on bottom to check which tags will apply for given plain text                    

확장 프로그램 기본 정보

이름 Blurred thumbnails Blurred thumbnails
ID lefhalefpinohjmpfflkfcaoiafmpifb
공식 URL https://chromewebstore.google.com/detail/blurred-thumbnails/lefhalefpinohjmpfflkfcaoiafmpifb
설명 Blur thumbnails on YT page for whatever reason
파일 크기 26.32 KB
설치 횟수 645
현재 버전 1.5.0
최근 업데이트 2024-02-18
출시 날짜 2023-03-25
평점 4.78/5 총 9 개의 평점
개발자 krzysiek.kurczewski
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kkurczewski/blur-youtube-thumbnails
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blurred thumbnails",
    "version": "1.5.0",
    "description": "Blur thumbnails on YT page for whatever reason",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/m.youtube.com\/*"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "hook\/onInstall.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/blur.js",
                "content\/observer\/mutationObserver.js",
                "content\/selectors\/home.js",
                "content\/selectors\/watch.js",
                "content\/selectors\/results.js",
                "content\/selectors\/playlists.js",
                "content\/video.js",
                "content\/recycler.js",
                "content\/index.js"
            ],
            "css": [
                "content\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "content\/blur.js",
                "content\/observer\/mutationObserver.js",
                "content\/selectors\/home.m.js",
                "content\/selectors\/watch.m.js",
                "content\/video.js",
                "content\/index.m.js"
            ],
            "css": [
                "content\/style.m.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}