QR Code Generator

QR Code Generator

QR Code fastest way to generate or scan QR codes. Decode QR Code in image or use webcam.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "offline_enabled": true,
  "version": "1.0.4",
  "manifest_version": 3,
  "icons": {
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "background": {
    "service_worker": "/static/bg.js"
  },
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/static/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": "assets/icons/icon-32.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/js/worker.js",
        "/static/content.js",
        "/static/bg.js",
        "/scanner/worker.js",
        "/css/popup.css",
        "/assets/image/exit.png",
        "/assets/image/copy.png",
        "/assets/image/image.png",
        "/assets/image/photo.png",
        "/assets/image/rate-us.png",
        "/assets/image/download.png",
        "/assets/image/code.png",
        "/assets/icons/icon-256.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}