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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } ] } |