Youtube Thumbnail Downloader
A chrome extension by Jay Alto
Youtube Thumbnail Downloader là gì?
Youtube Thumbnail Downloader là một tiện ích mở rộng Chrome được phát triển bởi https://www.thumbnail.guide, và tính năng chính của nó là "A chrome extension by Jay Alto".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Thumbnail Downloader
Tải xuống các tệp mở rộng Youtube Thumbnail Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Ever wanted to quickly download a Youtube thumbnail to review or share? Well, now you can in a single click. Copying Video ID's, opening up separate websites, renaming the file, managing plugins takes too much time. The Youtube Thumbnail Downloader lets you download a videos thumbnail in a single click, automatically naming the file with the video title and channel name.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | neefidmpdnfbfkhfakphalpmdiddbkgh |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-thumbnail-downloa/neefidmpdnfbfkhfakphalpmdiddbkgh |
Mô tả | A chrome extension by Jay Alto |
Kích Thước Tệp | 222 KB |
Số Lần Cài Đặt | 2,664 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2022-06-25 |
Ngày Phát Hành | 2022-04-14 |
Đánh Giá | 4.00/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | https://www.thumbnail.guide |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension by Jay Alto", "version": "0.0.4", "manifest_version": 3, "name": "Youtube Thumbnail Downloader", "background": { "service_worker": "background.bundle.js" }, "action": { "default_icon": "icon-34.png" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "mail.svg", "twitter.svg", "popup.html", "download-dark.png", "download-light.png", "downloadScript.bundle.js", "showUiScript.bundle.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |