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文件

下載YouTube Thumbnail Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}