YT Thumbnail Downloader
Download thumbnail images of youtube videos
YT Thumbnail Downloaderคืออะไร?
YT Thumbnail Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rovalty และคุณลักษณะหลักของมันคือ "Download thumbnail images of youtube videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YT Thumbnail Downloader
ดาวน์โหลดไฟล์ส่วนขยาย YT Thumbnail Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
YT Thumbnail Downloader is simple tool which will help you to download thumbnail images of any youtube video. Download free youtube videos thumbnail image in Full HD(1080), HD (720), SD, and also in small size. it's currently supported formats: YouTube (HD, HQ, 1080p, 4K) you can easily download your video-thumbnails. Just open any youtube video > click on Download Thumbnail button from extension > Done! Your thumbnails will be ready for saving. Privacy policy: https://www.saxsos.xyz/p/policy-privacy-policy.html
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YT Thumbnail Downloader |
ID | akfikgmhbajiaekdbgchbmhkceclncda |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda |
คำอธิบาย | Download thumbnail images of youtube videos |
ขนาดไฟล์ | 58.71 KB |
จำนวนการติดตั้ง | 2,404 |
เวอร์ชันปัจจุบัน | 3.5.4 |
อัปเดตครั้งล่าสุด | 2020-05-09 |
วันที่เผยแพร่ | 2020-05-09 |
คะแนน | 3.97/5 รวมทั้งหมด 30 คะแนน |
ผู้พัฒนา | Rovalty |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.saxsos.xyz/ |
URL หน้าช่วยเหลือ | https://www.saxsos.xyz/p/contact-us.html |
URL หน้านโยบายความเป็นส่วนตัว | https://www.saxsos.xyz/p/policy-privacy-policy.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "name": "YT Thumbnail Downloader", "description": "Download thumbnail images of youtube videos", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "3.5.4", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "YT Thumbnail Downloader", "default_popup": "popup.html", "default_icon": { "128": "img\/128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "download.js" ], "run_at": "document_end" } ], "icons": { "16": "img\/16.png", "32": "img\/32.png", "48": "img\/48.png", "128": "img\/128.png" }, "web_accessible_resources": [ "*.png", "*.PNG", "*.JPG" ], "permissions": [ "*:\/\/*.youtube.com\/*" ], "manifest_version": 2 } |