YouTube Thumbnail Preview

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

YouTube Thumbnail Preview là gì?

YouTube Thumbnail Preview là một tiện ích mở rộng Chrome được phát triển bởi BOSCH Luckas, và tính năng chính của nó là "Replaces a thumbnail on the YouTube homepage with a local image.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Thumbnail Preview

Tải xuống các tệp mở rộng YouTube Thumbnail Preview dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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! :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Thumbnail Preview YouTube Thumbnail Preview
ID pcjfjbneinhnchemgkcjpanfmkpgekde
URL Chính Thức https://chromewebstore.google.com/detail/youtube-thumbnail-preview/pcjfjbneinhnchemgkcjpanfmkpgekde
Mô tả Replaces a thumbnail on the YouTube homepage with a local image.
Kích Thước Tệp 24.97 KB
Số Lần Cài Đặt 190
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2023-09-06
Ngày Phát Hành 2023-03-21
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển BOSCH Luckas
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/0xbochi/GoogleChrome-YouTube-Thumbnail-Preview
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}