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 |
官方網址 | 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" } } } |