YouTube Thumbnail Preview
Replaces a thumbnail on the YouTube homepage with a local image.
Qu'est-ce que YouTube Thumbnail Preview ?
YouTube Thumbnail Preview est une extension Chrome développée par BOSCH Luckas, et sa fonction principale est "Replaces a thumbnail on the YouTube homepage with a local image.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Thumbnail Preview
Téléchargez les fichiers d'extension YouTube Thumbnail Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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! :)
Informations de Base sur l'Extension
Nom | YouTube Thumbnail Preview |
ID | pcjfjbneinhnchemgkcjpanfmkpgekde |
URL Officiel | https://chromewebstore.google.com/detail/youtube-thumbnail-preview/pcjfjbneinhnchemgkcjpanfmkpgekde |
Description | Replaces a thumbnail on the YouTube homepage with a local image. |
Taille du Fichier | 24.97 KB |
Nombre d'Installations | 190 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2023-09-06 |
Date de Publication | 2023-03-21 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | BOSCH Luckas |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/0xbochi/GoogleChrome-YouTube-Thumbnail-Preview |
Langues Prises en Charge | 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" ] } ] } |