Hide YouTube Thumbnails

Hide YouTube Thumbnails for less clickbaity browsing

Hide YouTube Thumbnails란 무엇입니까?

Hide YouTube Thumbnails은(는) Adam Jones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide YouTube Thumbnails for less clickbaity browsing"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Simply hides thumbnails on YouTube to have a more peaceful and less distracting browsing experience. Also useful for avoiding spoilers or inappropriate imagery.

Options available:
- Temporarily turn off hiding
- Blur rather than hide thumbnails
- Show thumbnails on hover
- Show only solid color
- Show thumbnails on search results / playlist / watch / subscriptions / channel pages

This extsion could also be descibed as blocking YouTube thumbnails on videos, disabling YouTube thumbnails on videos, blurring YouTube thumbnails on videos. People have found it useful for:
- Hiding distracting or inappropriate YouTube thumbnails in class when teaching students
- Hiding YouTube thumbnails to reduce distraction and procrastination when studying or working
- Hiding YouTube thumbnails to avoid spoilers in the video                    

확장 프로그램 기본 정보

이름 Hide YouTube Thumbnails Hide YouTube Thumbnails
ID phmcfcbljjdlomoipaffekhgfnpndbef
공식 URL https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef
설명 Hide YouTube Thumbnails for less clickbaity browsing
파일 크기 26.04 KB
설치 횟수 56,897
현재 버전 2.5.0
최근 업데이트 2023-10-31
출시 날짜 2019-04-12
평점 4.83/5 총 83 개의 평점
개발자 Adam Jones
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/domdomegg/hideytthumbnails-extension
도움말 페이지 URL https://github.com/domdomegg/hideytthumbnails-extension/issues
개인정보 보호 정책 페이지 URL https://adamjones.me/privacy-policies
지원되는 언어 de,en,fr,nl,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.5.0",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "homepage_url": "https:\/\/github.com\/domdomegg\/hideytthumbnails-extension",
    "browser_specific_settings": {
        "gecko": {
            "id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}"
        },
        "gecko_android": []
    },
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "512": "img\/icon512.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "common.js",
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}