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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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": [ "*:\/\/*\/*" ] } ] } |