GeText

GeText

Extension can get text from image using OCR engine

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "3.0",
  "name": "GeText",
  "description": "Extension can get text from image using OCR engine",
  "permissions": [
    "storage",
    "file://*",
    "<all_urls>"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "scripts/bg.js"
    ]
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png",
    "256": "img/256.png",
    "512": "img/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/contentScript.js"
      ]
    }
  ],
  "browser_action": {},
  "web_accessible_resources": [
    "/pages/result.html",
    "scripts/jquery-3.6.0.min"
  ],
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Initiate extension"
    }
  }
}