Awesome ScreenShot YouTube
Take a screenshot of any YouTube video with one click.
什么是Awesome ScreenShot YouTube?
Awesome ScreenShot YouTube是由Magic Dev开发的Chrome扩展程序,该扩展的主要功能是“Take a screenshot of any YouTube video with one click.”。
扩展截图
下载Awesome ScreenShot YouTube扩展crx文件
下载Awesome 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. Click on the "o" button to take a screenshot.
扩展基本信息
名称 | Awesome ScreenShot YouTube |
ID | igpogmdknpofhifbnhgeniljfoebfene |
官方URL | https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene |
简介 | Take a screenshot of any YouTube video with one click. |
文件大小 | 18.79 KB |
安装次数 | 35 |
当前版本 | 1.0.3 |
更新时间 | 2022-02-05 |
上架时间 | 2021-11-26 |
开发者 | Magic Dev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Awesome ScreenShot YouTube", "version": "1.0.3", "description": "Take a screenshot of any YouTube video with one click.", "icons": { "128": "\/images\/128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/*" ], "permissions": [ "https:\/\/www.youtube.com\/*", "webNavigation" ] } |