OCR Scanner
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
OCR Scanner란 무엇입니까?
OCR Scanner은(는) vncat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…"입니다.
확장 프로그램 스크린샷
OCR Scanner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a translation tool when reading protected pdf files on Chrome. This extension adds a button to your browser toolbar. After user clicks on the button and select a region, the extension captures the snapshot from the region, recognize text inside this region, and translate it to the user's preferred language.
확장 프로그램 기본 정보
이름 | |
ID | icpcaonhnofngeapallehocmhbillkpg |
공식 URL | https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg |
설명 | An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a… |
파일 크기 | 893 KB |
설치 횟수 | 5,737 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2022-02-13 |
출시 날짜 | 2021-05-31 |
평점 | 3.41/5 총 34 개의 평점 |
개발자 | vncat |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://vncatdev.web.app/extensions/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OCR Scanner", "version": "0.0.4", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "activeTab", "storage", "identity", "identity.email" ], "content_scripts": [ { "js": [ "contentscript.js" ], "css": [ "contentscript.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Click me to extract and translate text", "default_icon": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } } } |