YouTube Screenshot
Save Take screenshots from YouTube video
什么是YouTube Screenshot?
YouTube Screenshot是由info开发的Chrome扩展程序,该扩展的主要功能是“Save Take screenshots from YouTube video”。
扩展截图
下载YouTube Screenshot扩展crx文件
下载YouTube Screenshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
官方URL | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
简介 | Save Take screenshots from YouTube video |
文件大小 | 164 KB |
安装次数 | 230 |
当前版本 | 2.0.0 |
更新时间 | 2022-12-05 |
上架时间 | 2022-12-05 |
评分 | 5.00/5 共1次评分 |
开发者 | info |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |