YouTube Screenshot
Save Take screenshots from YouTube video
YouTube Screenshot là gì?
YouTube Screenshot là một tiện ích mở rộng Chrome được phát triển bởi info, và tính năng chính của nó là "Save Take screenshots from YouTube video".
Ả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 Screenshot
Tải xuống các tệp mở rộng YouTube Screenshot 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
A small add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
Mô tả | Save Take screenshots from YouTube video |
Kích Thước Tệp | 164 KB |
Số Lần Cài Đặt | 230 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2022-12-05 |
Ngày Phát Hành | 2022-12-05 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | info |
[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", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |