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ファイルをダウンロード
OCR Scanner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } } |