AI QR Code Reader

AI QR Code Reader

An AI based QR code reader that can effectively recognise all kinds of shaped QR codes, coloured QR codes and rotating QR codes.

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_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.1",
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "__MSG_extActionTitle__"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "models/*",
        "sandbox/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "sandbox/sandbox.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ]
}