Screenshot YouTube
Take a screenshot of any YouTube video with one click.
什么是Screenshot YouTube?
Screenshot YouTube是由Zdeněk Gromnica | FutureMillennium开发的Chrome扩展程序,该扩展的主要功能是“Take a screenshot of any YouTube video with one click.”。
扩展截图
下载Screenshot YouTube扩展crx文件
下载Screenshot YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Screenshot YouTube |
ID | gjoijpfmdhbjkkgnmahganhoinjjpohk |
官方URL | https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk |
简介 | Take a screenshot of any YouTube video with one click. |
文件大小 | 16.15 KB |
安装次数 | 446,521 |
当前版本 | 2.4.1 |
更新时间 | 2021-12-20 |
上架时间 | 2020-02-04 |
评分 | 4.45/5 共366次评分 |
开发者 | Zdeněk Gromnica | FutureMillennium |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.patreon.com/FutureMillennium |
支持的语言 | 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" ] } |