YouTube Thumbnail Preview

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

Τι είναι το YouTube Thumbnail Preview;

Το YouTube Thumbnail Preview είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BOSCH Luckas, και η κύρια λειτουργία του είναι "Replaces a thumbnail on the YouTube homepage with a local image.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Thumbnail Preview

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
            ]
        }
    ]
}