Fast OCR

Fast OCR

Free! Copy text with OCR from images, videos, PDF scanned and local images of your computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.2.8",
  "action": {
    "default_title": "__MSG_app_name__",
    "default_icon": "assets/300.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/16.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/chunk-vendors.css",
        "css/content.css"
      ],
      "js": [
        "js/chunk-vendors.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "commands": {
    "capt": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "__MSG_cmd_capt__"
    }
  },
  "options_ui": {
    "page": "ocr.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ocr.html",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}