ScanLingua

ScanLingua

Scan, recognize and translate parts of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScanLingua",
  "description": "Scan, recognize and translate parts of your screen.",
  "version": "0.0.3.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "index.js",
    "type": "module"
  },
  "minimum_chrome_version": "92",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_title": "ScanLingua",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "100": "icon-100.png"
  },
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S",
        "windows": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S",
        "chromeos": "Ctrl+Shift+S"
      },
      "description": "take-screenshot"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}