Cropp Ninja OCR

Cropp Ninja OCR

Capture and crop parts of the screen and extract its text!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cropp Ninja OCR",
  "version": "1.2.10",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApS7s3GT5G84FatdtDTvVwN4zwIjw01+DnojL1hDalHr0RMGe7V36eM/tPqmgOT1zPVmgF7W8B7JZisqr0M7VAG+HWZvRQ+dZEyG5UWqf8Mu16Kv8ab27pAIPmIq0kGoSvugDW8V2gtd5WnKSK+AiXuGhIGgGUWECJXEzB8X2X6Lr4llG5vaVAdBdp7vePR0NI2neQHXRgY5ybyQ2+Z3KX1x+cU1RA8AxoTANVB42vs4+OrQMmGGaqVsZyTSBOSOqzoHrV/tFWc7IBZ0hGx7CO2aW+tDMaRouC3sWVr26tHDx8pPzxVWo9VpOtqv8xGumLh9YWfACj6QMRA7Bu3+wzwIDAQAB",
  "icons": {
    "16": "./croopninja16.png",
    "48": "./croopninja48.png"
  },
  "description": "Capture and crop parts of the screen and extract its text!",
  "oauth2": {
    "client_id": "496992545641-d1mqqdovn9uhbg56l7v7p5ck7gugoerb.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "identity"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}