Screenshot YouTube
Take a screenshot of any YouTube video with one click.
Screenshot YouTube là gì?
Screenshot YouTube là một tiện ích mở rộng Chrome được phát triển bởi Zdeněk Gromnica | FutureMillennium, và tính năng chính của nó là "Take a screenshot of any YouTube video with one click.".
Ả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 Screenshot YouTube
Tải xuống các tệp mở rộng Screenshot YouTube 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
Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file, or copies it to the clipboard, or both. Optionally with keyboard shortcuts, and buttons for changing the playback rate. This extension does not contain any malicious or tracking code. No viruses. No ads. Only good software. Thanks to Ari Velazquez, and Zertsu for their contributions. Consider supporting on Patreon: https://www.patreon.com/FutureMillennium Open source at https://github.com/FutureMillennium/Screenshot-YouTube
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Screenshot YouTube |
ID | gjoijpfmdhbjkkgnmahganhoinjjpohk |
URL Chính Thức | https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk |
Mô tả | Take a screenshot of any YouTube video with one click. |
Kích Thước Tệp | 16.15 KB |
Số Lần Cài Đặt | 446,521 |
Phiên Bản Hiện Tại | 2.4.1 |
Cập Nhật Lần Cuối | 2021-12-20 |
Ngày Phát Hành | 2020-02-04 |
Đánh Giá | 4.45/5 Tổng số 366 Đánh Giá |
Nhà Phát Triển | Zdeněk Gromnica | FutureMillennium |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.patreon.com/FutureMillennium |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Screenshot YouTube", "version": "2.4.1", "description": "Take a screenshot of any YouTube video with one click.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "page.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |