True OCR

True OCR

Recognize the text in the image automatically in the browser and let's you paste it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "True OCR",
  "description": "Recognize the text in the image automatically in the browser and let's you paste it",
  "version": "0.1",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "https://api.apitruecaptcha.org/*",
    "identity",
    "identity.email",
    "declarativeContent",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://apitruecaptcha.org/*",
        "https://signin.aws.amazon.com/*",
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "jquery-3.6.0.min.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "data/hosts.json",
    "popup.css"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/TrueCaptchaLogo16.png",
      "32": "/images/TrueCaptchaLogo32.png",
      "48": "/images/TrueCaptchaLogo48.png",
      "128": "/images/TrueCaptchaLogo128.png"
    }
  },
  "icons": {
    "16": "/images/TrueCaptchaLogo16.png",
    "32": "/images/TrueCaptchaLogo32.png",
    "48": "/images/TrueCaptchaLogo48.png",
    "128": "/images/TrueCaptchaLogo128.png"
  },
  "manifest_version": 2
}