Screenshot OCR
Screenshot and OCR for chrome plugin
Screenshot OCRとは何ですか?
Screenshot OCRはchen.zou1128によって開発されたChromeの拡張機能で、その主な機能は「Screenshot and OCR for chrome plugin」です。
拡張機能のスクリーンショット
Screenshot OCR拡張機能のCRXファイルをダウンロード
Screenshot OCR拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Custom intercept the area you want for OCR content extraction
拡張機能の基本情報
名前 | Screenshot OCR |
ID | dplahamlefobblocfhnigfnfkalamnce |
公式URL | https://chromewebstore.google.com/detail/screenshot-ocr/dplahamlefobblocfhnigfnfkalamnce |
説明 | Screenshot and OCR for chrome plugin |
ファイルサイズ | 385 KB |
インストール数 | 215 |
現在のバージョン | 1.1 |
最終更新日 | 2023-03-20 |
公開日 | 2023-03-14 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | chen.zou1128 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Screenshot OCR", "description": "Screenshot and OCR for chrome plugin", "version": "1.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/inject.js" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "activeTab", "storage", "windows", "contextMenus" ] } |