YouTube Thumbnail Preview
Replaces a thumbnail on the YouTube homepage with a local image.
YouTube Thumbnail Preview क्या है?
YouTube Thumbnail Preview BOSCH Luckas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces a thumbnail on the YouTube homepage with a local image."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Thumbnail Preview एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |