Video Note & Screenshot
Go to take YouTube notes or screenshot YouTube.
O que é Video Note & Screenshot?
Video Note & Screenshot é uma extensão do Chrome desenvolvida por Gemoo Inc., e sua principal característica é "Go to take YouTube notes or screenshot YouTube.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Video Note & Screenshot
Baixe arquivos de extensão Video Note & Screenshot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Video Note & Screenshot |
ID | miedbfijmibcgjjmhdccocldliepbfng |
URL Oficial | https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng |
Descrição | Go to take YouTube notes or screenshot YouTube. |
Tamanho do Arquivo | 16.58 KB |
Contagem de Instalações | 5,319 |
Versão Atual | 1.0.3 |
Última Atualização | 2023-08-15 |
Data de Publicação | 2023-06-18 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Gemoo Inc. |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://gemoo.com/tools/video-note-taking |
URL da Página de Ajuda | https://gemoo.com/support/ |
URL da Página de Política de Privacidade | https://gemoo.com/privacy-policy |
Idiomas Suportados | 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": [ "*:\/\/*\/*" ] } ] } |