Video Note & Screenshot
Go to take YouTube notes or screenshot YouTube.
Was ist Video Note & Screenshot?
Video Note & Screenshot ist eine Chrome-Erweiterung, die von Gemoo Inc. entwickelt wurde, und ihr Hauptmerkmal ist "Go to take YouTube notes or screenshot YouTube.".
Erweiterungsscreenshots
Video Note & Screenshot-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Note & Screenshot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | miedbfijmibcgjjmhdccocldliepbfng |
Offizielle URL | https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng |
Beschreibung | Go to take YouTube notes or screenshot YouTube. |
Dateigröße | 16.58 KB |
Installationsanzahl | 5,319 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2023-08-15 |
Veröffentlichungsdatum | 2023-06-18 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Gemoo Inc. |
gemoo.developer@gmail.com | |
Zahlungsart | free |
Erweiterungswebsite | https://gemoo.com/tools/video-note-taking |
Hilfeseite URL | https://gemoo.com/support/ |
URL der Datenschutzrichtlinien-Seite | https://gemoo.com/privacy-policy |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } ] } |