Video Note & Screenshot
Go to take YouTube notes or screenshot YouTube.
什么是Video Note & Screenshot?
Video Note & Screenshot是由Gemoo Inc.开发的Chrome扩展程序,该扩展的主要功能是“Go to take YouTube notes or screenshot YouTube.”。
扩展截图
下载Video Note & Screenshot扩展crx文件
下载Video Note & Screenshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This tool helps you take screenshots from a YouTube video and extract text from the video. Check the main features: 1.Video Transcription Transcribe video to text by extracting the subtitles/closed captions. 2.Extract Text from Video Screenshots Take screenshots from the video and use the OCR function to extract text information from the video's screenshots. 3. Take screenshots from YouTube Video quickly.
扩展基本信息
名称 | Video Note & Screenshot |
ID | miedbfijmibcgjjmhdccocldliepbfng |
官方URL | https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng |
简介 | Go to take YouTube notes or screenshot YouTube. |
文件大小 | 16.58 KB |
安装次数 | 5,319 |
当前版本 | 1.0.3 |
更新时间 | 2023-08-15 |
上架时间 | 2023-06-18 |
评分 | 5.00/5 共1次评分 |
开发者 | Gemoo Inc. |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://gemoo.com/tools/video-note-taking |
帮助页面URL | https://gemoo.com/support/ |
隐私政策页面URL | https://gemoo.com/privacy-policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Note & Screenshot", "description": "Go to take YouTube notes or screenshot YouTube.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "tabs", "activeTab", "webRequest", "scripting", "downloads" ], "host_permissions": [ "*:\/\/*\/*", "https:\/\/*.gemoo.com\/*", "https:\/\/*.youtube.com\/*" ], "action": { "default_title": "Video Note & Screenshot", "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.gemoo.com\/*" ], "css": [ "assets\/content.css" ], "js": [ "my-content-script.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ] } |