YouTube Thumbnail Preview

Replaces a thumbnail on the YouTube homepage with a local image.

YouTube Thumbnail Preview란 무엇입니까?

YouTube Thumbnail Preview은(는) BOSCH Luckas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces a thumbnail on the YouTube homepage with a local image."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Elevate your YouTube browsing experience with YouTube Thumbnail Preview! 

This Chrome extension allows you to effortlessly replace the thumbnails and titles of videos on YouTube with your own custom pictures and text.

Whether you're looking to have a bit of fun or simply want to personalize your YouTube experience, YouTube Thumbnail Preview is the perfect solution. 
With an easy-to-use interface and seamless integration, this extension offers a new level of customization that is sure to impress.

Key features:
- Replace video thumbnails with your chosen custom image,
- Change video titles to your preferred custom text,
- Modify one random thumbnail and title among the first 7 videos displayed,
- Retain your custom image and title settings even after closing the extension window,
- Sleek and modern design for an enjoyable user experience.

This extension is open-source! :)                    

확장 프로그램 기본 정보

이름 YouTube Thumbnail Preview YouTube Thumbnail Preview
ID pcjfjbneinhnchemgkcjpanfmkpgekde
공식 URL https://chromewebstore.google.com/detail/youtube-thumbnail-preview/pcjfjbneinhnchemgkcjpanfmkpgekde
설명 Replaces a thumbnail on the YouTube homepage with a local image.
파일 크기 24.97 KB
설치 횟수 190
현재 버전 2.1
최근 업데이트 2023-09-06
출시 날짜 2023-03-21
평점 5.00/5 총 7 개의 평점
개발자 BOSCH Luckas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/0xbochi/GoogleChrome-YouTube-Thumbnail-Preview
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Thumbnail Preview",
    "version": "2.1",
    "description": "Replaces a thumbnail on the YouTube homepage with a local image.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}