QR Code Scanner

QR Code Scanner

Scans QR codes on any web page or PDF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QR Code Scanner",
  "version": "1.1",
  "description": "Scans QR codes on any web page or PDF",
  "manifest_version": 3,
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/scanner*",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "src/popup.html",
    "default_icon": {
      "16": "images/icon.png",
      "32": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    }
  },
  "content_security_policy": {}
}