Screenshot OCR
Screenshot and OCR for chrome plugin
Cos'è Screenshot OCR?
Screenshot OCR è un'estensione di Chrome sviluppata da chen.zou1128, e la sua funzione principale è "Screenshot and OCR for chrome plugin".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Screenshot OCR
Scarica i file di estensione Screenshot OCR in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Custom intercept the area you want for OCR content extraction Informazioni di Base sull'Estensione
| Nome | |
| ID | dplahamlefobblocfhnigfnfkalamnce |
| URL Ufficiale | https://chromewebstore.google.com/detail/screenshot-ocr/dplahamlefobblocfhnigfnfkalamnce |
| Descrizione | Screenshot and OCR for chrome plugin |
| Dimensione del File | 385 KB |
| Conteggio Installazioni | 215 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2023-03-20 |
| Data di Pubblicazione | 2023-03-14 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | chen.zou1128 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |