QR Code Scanner for Google Chrome™

QR Code Scanner for Google Chrome™

Unlock the QR code world! Scan with ease using files, USB or built-in camera, or screenshots.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "version": "4.1.3",
  "icons": {
    "16": "icons/qr-code-7.png",
    "24": "icons/qr-code-6.png",
    "32": "icons/qr-code-5.png",
    "64": "icons/qr-code-4.png",
    "128": "icons/qr-code-3.png",
    "256": "icons/qr-code-2.png",
    "512": "icons/qr-code-1.png"
  },
  "action": {
    "default_icon": "icons/qr-code-1.png",
    "default_popup": "html2/go-popup.html"
  },
  "background": {
    "service_worker": "js/worker.js"
  },
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "activeTab"
  ]
}