ImageToText
Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
Qu'est-ce que ImageToText ?
ImageToText est une extension Chrome développée par Pedro Henrique Santos Sousa, et sa fonction principale est "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ImageToText
Téléchargez les fichiers d'extension ImageToText au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension allows you to copy text from any image on the internet, just like you do with normal text content. Simplicity, that is the goal with this application, right click the image, "copy image text" and that is it... you are ready to use and paste the text you saw in that particular image. It is useful for informational, ludicative, and code blocks images. Now you don't have to rewrite everything, use this extension and the problem is solved. To be able to process the image, this extension uses OCR.Space API.
Informations de Base sur l'Extension
Nom | ImageToText |
ID | ojmelblegakdgcjacaclnlgdmifgppdb |
URL Officiel | https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb |
Description | Copy text from images just like you do with normal text content. Right click it, and 'copy image text'. |
Taille du Fichier | 34.94 KB |
Nombre d'Installations | 1,340 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2020-05-13 |
Date de Publication | 2020-05-12 |
Évaluation | 1.00/5 Total 2 Évaluations |
Développeur | Pedro Henrique Santos Sousa |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ImageToText", "description": "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.", "version": "0.0.1", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "functions.js" ] } ], "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon_tool_bar.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "notifications" ] } |