image-to-text

image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "image-to-text",
  "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
  "version": "0.0.1",
  "author": "MarwanSdeek <[email protected]>",
  "manifest_version": 2,
  "icons": {
    "48": "icons/crop_48.png",
    "128": "icons/crop_128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/inactive.png"
  },
  "background": {
    "scripts": [
      "tesseract.min.js",
      "background.js"
    ]
  }
}