OCR Vision - Convert Images to Text

OCR Vision - Convert Images to Text

Effortlessly retrieve texts from any image/file in any language with just one click. (Shortcut: Ctrl+Shift+1)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OCR Vision - Convert Images to Text",
  "version": "1.5",
  "description": "Effortlessly retrieve texts from any image/file in any language with just one click. (Shortcut: Ctrl+Shift+1)",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "40": "images/icon.png",
      "80": "images/icon.png",
      "100": "images/icon.png"
    }
  },
  "icons": {
    "40": "images/icon.png",
    "80": "images/icon.png",
    "100": "images/icon.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      }
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}